@smallstack/svelte-ui
Version:
Tiny library for Svelte 5 and DaisyUI, published as multi entry ESM module and as web components.
12 lines (11 loc) • 305 B
TypeScript
export default ComponentValue;
type ComponentValue = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<$$ComponentProps>): void;
};
declare const ComponentValue: import("svelte").Component<{
value: any;
}, {}, "">;
type $$ComponentProps = {
value: any;
};