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.
26 lines (25 loc) • 727 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import 'prism-svelte';
declare const __propDef: {
props: {
[x: string]: any;
source?: string | null | undefined;
language?: string | undefined;
highlightedSource?: string | undefined;
classes?: {
root?: string;
pre?: string;
code?: string;
} | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type CodeProps = typeof __propDef.props;
export type CodeEvents = typeof __propDef.events;
export type CodeSlots = typeof __propDef.slots;
export default class Code extends SvelteComponentTyped<CodeProps, CodeEvents, CodeSlots> {
}
export {};