mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-03 21:46:08 +00:00

* fix: mentionables defaults * feat: make message api components great * fix: add url to button link
13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
import type { ComponentType } from '../common';
|
|
import { BaseSelectMenuComponent } from './BaseSelectMenuComponent';
|
|
|
|
export class ChannelSelectMenuComponent extends BaseSelectMenuComponent<ComponentType.ChannelSelect> {
|
|
get channelsTypes() {
|
|
return this.data.channel_types;
|
|
}
|
|
|
|
get defaultValues() {
|
|
return this.data.default_values;
|
|
}
|
|
}
|