@selenite/commons
Version:
This typescript package provides a set of frequently used utilities, types and svelte actions for building projects with Typescript and Svelte.
9 lines (8 loc) • 317 B
TypeScript
import type { HTMLAttributes } from 'svelte/elements';
interface Props extends HTMLAttributes<HTMLElement> {
path?: string[];
paths?: string[][];
}
declare const PathGenerator: import("svelte").Component<Props, {}, "path">;
type PathGenerator = ReturnType<typeof PathGenerator>;
export default PathGenerator;