UNPKG

agnostic-svelte

Version:
42 lines (41 loc) 1.01 kB
/** @typedef {typeof __propDef.props} DrawerProps */ /** @typedef {typeof __propDef.events} DrawerEvents */ /** @typedef {typeof __propDef.slots} DrawerSlots */ export default class Drawer extends SvelteComponentTyped<{ id: any; title: any; drawerRoot: any; placement: any; isAnimationFadeIn?: boolean; role?: string; }, { instance: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type DrawerProps = typeof __propDef.props; export type DrawerEvents = typeof __propDef.events; export type DrawerSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { id: any; title: any; drawerRoot: any; placement: any; isAnimationFadeIn?: boolean; role?: string; }; events: { instance: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};