UNPKG

@smkit/ui

Version:

UI Kit of SberMarketing

43 lines (42 loc) 1.13 kB
import { SvelteComponentTyped } from "svelte"; import type { Writable } from 'svelte/store'; declare const __propDef: { props: { [x: string]: any; areaClass?: string; label?: string; description?: string; value: string; isActive?: boolean; footer?: string; focus?: boolean; height?: { max: number; min: number; current: number; }; autoresize?: boolean; oninput?: Function | null; onmount?: Function | null; name?: string; errors?: Writable<{ [key: string]: string; }> | null; error?: string; }; events: { input: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { label: {}; footer: {}; }; }; export type TextAreaProps = typeof __propDef.props; export type TextAreaEvents = typeof __propDef.events; export type TextAreaSlots = typeof __propDef.slots; export default class TextArea extends SvelteComponentTyped<TextAreaProps, TextAreaEvents, TextAreaSlots> { } export {};