UNPKG

platina-core

Version:

UI Kit of SberMarketing

44 lines (43 loc) 1.33 kB
import { SvelteComponentTyped } from "svelte"; import type { Writable } from 'svelte/store'; declare const __propDef: { props: { [x: string]: any; areaClass?: string | undefined; label?: string | undefined; description?: string | undefined; value: string; isActive?: boolean | undefined; footer?: string | undefined; focus?: boolean | undefined; height?: { max: number; min: number; current: number; } | undefined; autoresize?: boolean | undefined; disabled?: boolean | undefined; oninput?: (Function | null) | undefined; onmount?: (Function | null) | undefined; name?: string | undefined; errors?: (Writable<{ [key: string]: string; }> | null) | undefined; error?: string | undefined; }; 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 {};