Spaces:
Runtime error
Runtime error
File size: 585 Bytes
b5ea024 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import './ambient.js';
// Types written in this particular order to work around a dts-buddy bug where it doesn't handle the
// SvelteComponentDev as SvelteComponent alias correctly.
// If that's fixed, we can do export * from './index.js' instead.
export {
SvelteComponent,
SvelteComponentTyped,
onMount,
onDestroy,
beforeUpdate,
afterUpdate,
setContext,
getContext,
getAllContexts,
hasContext,
tick,
createEventDispatcher
} from './index.js';
export type {
ComponentConstructorOptions,
ComponentEvents,
ComponentProps,
ComponentType
} from './internal/public.js';
|