File size: 452 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/// <reference types="svelte" />
/// <reference types=".pnpm/[email protected]/node_modules/svelte" />
import type { Readable } from 'svelte/store';
/**
* Hook for seeing if nodes are initialized
* @returns - nodesInitialized Writable
*/
export declare function useNodesInitialized(): Readable<boolean>;
/**
* Hook for seeing if the flow is initialized
* @returns - initialized Writable
*/
export declare function useInitialized(): Readable<boolean>;
|