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

10 lines
273 B
TypeScript

import { ComponentTypes, RoleSelectMenu } from "oceanic.js";
export type RoleSelectProps = Omit<RoleSelectMenu, "type">;
export function RoleSelect(props: RoleSelectProps): RoleSelectMenu {
return {
type: ComponentTypes.ROLE_SELECT,
...props
};
}