ilojo-bar-components
Version:
Ilojo Bar Component Library
18 lines (17 loc) • 511 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
inputName: string;
placeholder: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type InputProps = typeof __propDef.props;
export declare type InputEvents = typeof __propDef.events;
export declare type InputSlots = typeof __propDef.slots;
export default class Input extends SvelteComponentTyped<InputProps, InputEvents, InputSlots> {
}
export {};