@boxyhq/svelte-ui
Version:
Svelte UI components from BoxyHQ
32 lines (31 loc) • 928 B
TypeScript
import { SvelteComponentTyped } from "svelte";
type TextAreaProps = {
id: string;
label: string;
value: string;
classNames?: {
textarea?: string;
label?: string;
container?: string;
};
handleInputChange: (e: any) => void;
} & JSX.InputHTMLAttributes<HTMLTextAreaElement>;
declare const __propDef: {
props: {
classNames?: TextAreaProps["classNames"];
id: TextAreaProps["id"];
label: TextAreaProps["label"];
value: TextAreaProps["value"];
handleInputChange: TextAreaProps["handleInputChange"];
};
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 {};