UNPKG

@sorens/artist-svelte

Version:

an opinionated and clean UI framework for SvelteKit with theme support built-in

30 lines (29 loc) 921 B
import { SvelteComponentTyped } from "svelte"; import type { useAction } from '../../types/global'; declare const __propDef: { props: { [x: string]: any; data?: string; language?: string; inline?: boolean; useAction?: useAction<HTMLElement>; class?: string | undefined; }; events: { click: MouseEvent; dblclick: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; mouseover: MouseEvent; focus: FocusEvent; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type PrismParserProps = typeof __propDef.props; export declare type PrismParserEvents = typeof __propDef.events; export declare type PrismParserSlots = typeof __propDef.slots; export default class PrismParser extends SvelteComponentTyped<PrismParserProps, PrismParserEvents, PrismParserSlots> { } export {};