10 lines
273 B
TypeScript
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
|
|
};
|
|
}
|