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

10 lines
273 B
TypeScript

import { ComponentTypes, UserSelectMenu } from "oceanic.js";
export type UserSelectProps = Omit<UserSelectMenu, "type">;
export function UserSelect(props: UserSelectProps): UserSelectMenu {
return {
type: ComponentTypes.USER_SELECT,
...props
};
}