first working version with using $state for nodes & edges
This commit is contained in:
+16
-16
@@ -1,23 +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 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: {};
|
||||
};
|
||||
// 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