UNPKG

ilojo-bar-components

Version:

Ilojo Bar Component Library

17 lines (16 loc) 505 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { placeholder: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type TextareaProps = typeof __propDef.props; export declare type TextareaEvents = typeof __propDef.events; export declare type TextareaSlots = typeof __propDef.slots; export default class Textarea extends SvelteComponentTyped<TextareaProps, TextareaEvents, TextareaSlots> { } export {};