@dvcol/neo-svelte
Version:
Neomorphic ui library for svelte 5
8 lines (7 loc) • 366 B
TypeScript
import type { NeoListMethods, NeoListProps } from './neo-list.model.js';
declare const NeoList: import("svelte").Component<NeoListProps, {
scrollToTop: NeoListMethods["scrollToTop"];
scrollToBottom: NeoListMethods["scrollToBottom"];
}, "ref" | "filter" | "sort" | "selected" | "highlight">;
type NeoList = ReturnType<typeof NeoList>;
export default NeoList;