UNPKG

lath

Version:

Seamless connection of pages.

18 lines (17 loc) 456 B
import { DefineApplet } from '../types'; interface PresetConst { root?: ShadowRoot; appletsDefinition: { [key: string]: DefineApplet; }; appletsSlot: { [key: string]: HTMLSlotElement; }; appletsSpace?: HTMLElement; defaultApplet: string; awaitCallback?: () => void; awaitDefine: () => Promise<void>; __EXISTING__: boolean; } declare const Preset: PresetConst; export default Preset;