mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-04 05:56:09 +00:00

* fix: github actions * fix: pnpm version * fix: github actions checkout * fix: brackets in failure function * fix: github actions * fix: github actions * fix: github actions * fix: github actions * fix: github actions * fix: github actions * fix: github actions * fix: github actions * chore: apply formatting * fix: github actions --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
9 lines
298 B
TypeScript
9 lines
298 B
TypeScript
import type { ComponentType } from 'discord-api-types/v10';
|
|
import { BaseSelectMenuComponent } from './BaseSelectMenuComponent';
|
|
|
|
export class UserSelectMenuComponent extends BaseSelectMenuComponent<ComponentType.UserSelect> {
|
|
get defaultValues() {
|
|
return this.data.default_values;
|
|
}
|
|
}
|