WIP: migrated store and useSvelteFlow hook to signals & solved state propagation for provider
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
/** @typedef {typeof __propDef.props} PageProps */
|
||||
/** @typedef {typeof __propDef.events} PageEvents */
|
||||
/** @typedef {typeof __propDef.slots} PageSlots */
|
||||
export default class Page extends SvelteComponentTyped<{
|
||||
[x: string]: never;
|
||||
}, {
|
||||
[evt: string]: CustomEvent<any>;
|
||||
}, {}> {
|
||||
}
|
||||
export type PageProps = typeof __propDef.props;
|
||||
export type PageEvents = typeof __propDef.events;
|
||||
export type PageSlots = typeof __propDef.slots;
|
||||
import { SvelteComponentTyped } from "svelte";
|
||||
declare const __propDef: {
|
||||
props: {
|
||||
[x: string]: never;
|
||||
};
|
||||
events: {
|
||||
[evt: string]: CustomEvent<any>;
|
||||
};
|
||||
slots: {};
|
||||
};
|
||||
export {};
|
||||
Reference in New Issue
Block a user