apprev/components-jsx/MentionableSelect.tsx
2025-05-15 07:10:53 -04:00

10 lines
322 B
TypeScript

import { ComponentTypes, MentionableSelectMenu } from "oceanic.js";
export type MentionableSelectProps = Omit<MentionableSelectMenu, "type">;
export function MentionableSelect(props: MentionableSelectProps): MentionableSelectMenu {
return {
type: ComponentTypes.MENTIONABLE_SELECT,
...props
};
}