svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
19 lines (18 loc) • 648 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { tableOrderStore, ColumnDef } from '@layerstack/svelte-table';
declare const __propDef: {
props: {
order: ReturnType<typeof tableOrderStore>;
column: ColumnDef;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type TableOrderIconProps = typeof __propDef.props;
export type TableOrderIconEvents = typeof __propDef.events;
export type TableOrderIconSlots = typeof __propDef.slots;
export default class TableOrderIcon extends SvelteComponentTyped<TableOrderIconProps, TableOrderIconEvents, TableOrderIconSlots> {
}
export {};