seyfert
Version:
The most advanced framework for discord bots
14 lines (13 loc) • 643 B
TypeScript
import { type APIActionRowComponent, type APIActionRowComponentTypes } from '../types';
import { ActionRow } from './ActionRow';
import type { BuilderComponents } from './types';
export * from './ActionRow';
export * from './Attachment';
export * from './Base';
export * from './Button';
export * from './Embed';
export * from './Modal';
export * from './SelectMenu';
export * from './Poll';
export * from './types';
export declare function fromComponent(data: BuilderComponents | APIActionRowComponentTypes | APIActionRowComponent<APIActionRowComponentTypes> | ActionRow<BuilderComponents>): BuilderComponents | ActionRow<BuilderComponents>;