ilojo-bar-components
Version:
Ilojo Bar Component Library
18 lines (17 loc) • 509 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
labelName: string;
labelText: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type LabelProps = typeof __propDef.props;
export declare type LabelEvents = typeof __propDef.events;
export declare type LabelSlots = typeof __propDef.slots;
export default class Label extends SvelteComponentTyped<LabelProps, LabelEvents, LabelSlots> {
}
export {};