@rkosafo/cai.components
Version:
This package is under development and not ready for public use.
14 lines (13 loc) • 360 B
TypeScript
export default TableLoader;
type TableLoader = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<$$ComponentProps>): void;
};
declare const TableLoader: import("svelte").Component<{
bodySize?: number;
headerSize?: number;
}, {}, "">;
type $$ComponentProps = {
bodySize?: number;
headerSize?: number;
};