UNPKG

@dvcol/neo-svelte

Version:

Neomorphic ui library for svelte 5

9 lines (8 loc) 431 B
import type { NeoTypewriterProps } from './neo-typewriter.model.js'; import type { TypewriterOptions } from './typewriter.utils.js'; declare const NeoTypewriter: import("svelte").Component<NeoTypewriterProps, { write: (options: TypewriterOptions, signal: AbortSignal) => Promise<void>; abort: () => void; }, "value" | "ref" | "display">; type NeoTypewriter = ReturnType<typeof NeoTypewriter>; export default NeoTypewriter;