9 lines
291 B
TypeScript
9 lines
291 B
TypeScript
/** Svelte Action for applying sort asc/dsc classes. */
|
|
export declare function tableInteraction(node: HTMLElement): {
|
|
destroy(): void;
|
|
};
|
|
/** Svelte Action for handling table a11y keyboard interactions. */
|
|
export declare function tableA11y(node: HTMLElement): {
|
|
destroy(): void;
|
|
};
|