@daks.dev/svelte.sdk
Version:
DAKS.DEV Svelte SDK
9 lines (8 loc) • 330 B
TypeScript
import type { SvelteHTMLElements } from 'svelte/elements';
type Props = Omit<SvelteHTMLElements['div'], 'class'> & {
class?: ClassName;
animate?: string;
};
declare const TextPlaceholder: import("svelte").Component<Props, {}, "">;
type TextPlaceholder = ReturnType<typeof TextPlaceholder>;
export default TextPlaceholder;