viewport-playground
Version:
A powerful, isolated viewport testing component for Svelte 5. Test your application's responsiveness in real-time with curated device presets, all within your own development environment.
12 lines (11 loc) • 329 B
TypeScript
export default Input;
type Input = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<$$ComponentProps>): void;
};
declare const Input: import("svelte").Component<{
value?: any;
} & Record<string, any>, {}, "value">;
type $$ComponentProps = {
value?: any;
} & Record<string, any>;