eigent/package/@stackframe/stack-shared/dist/utils/globals.d.ts
2025-07-29 23:57:16 +08:00

5 lines
133 B
TypeScript

declare const globalVar: any;
declare function createGlobal<T>(key: string, init: () => T): T;
export { createGlobal, globalVar };