@sorens/artist-svelte
Version:
an opinionated and clean UI framework for SvelteKit with theme support built-in
10 lines (9 loc) • 507 B
TypeScript
import type { voidFunction } from '../../types/global';
import type { scrollHook } from '../../types/hook';
export declare const slideEffectAction: (element: HTMLElement, scrollPosition: scrollHook) => void;
export declare const compactEffectAction: (element: HTMLElement) => {
initCompactEffect: voidFunction<never>;
updateCompactEffect: (scrollPosition: scrollHook) => void;
destroyCompactEffect: voidFunction<never>;
};
export declare const mergeEffectAction: (element: HTMLElement) => void;