@boxyhq/svelte-ui
Version:
Svelte UI components from BoxyHQ
32 lines (31 loc) • 841 B
TypeScript
import { SvelteComponentTyped } from "svelte";
interface PropsType {
text: string;
label: string;
copyDoneCallback?: (info: {
operation: "COPY";
}) => void;
classNames?: {
container?: string;
label?: string;
input?: string;
};
}
declare const __propDef: {
props: {
label: PropsType["label"];
classNames?: PropsType["classNames"];
copyDoneCallback?: PropsType["copyDoneCallback"];
text: PropsType["text"];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type IndexProps = typeof __propDef.props;
export type IndexEvents = typeof __propDef.events;
export type IndexSlots = typeof __propDef.slots;
export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> {
}
export {};