svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
24 lines (23 loc) • 687 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import 'prism-svelte';
declare const __propDef: {
props: {
[x: string]: any;
code?: string | null | undefined;
language?: string | undefined;
highlightedCode?: string | undefined;
showCode?: boolean | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type PreviewProps = typeof __propDef.props;
export type PreviewEvents = typeof __propDef.events;
export type PreviewSlots = typeof __propDef.slots;
export default class Preview extends SvelteComponentTyped<PreviewProps, PreviewEvents, PreviewSlots> {
}
export {};