svelte-multiselect
Version:
Svelte multi-select component
10 lines (9 loc) • 322 B
TypeScript
type Subpage = [title: string, href: string, description: string];
type $$ComponentProps = {
title: string;
subtitle: string;
subpages: Subpage[];
};
declare const SubpageGrid: import("svelte").Component<$$ComponentProps, {}, "">;
type SubpageGrid = ReturnType<typeof SubpageGrid>;
export default SubpageGrid;