mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-30 12:40:10 +00:00
5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
declare const globalVar: any;
|
|
|
|
declare function createGlobal<T>(key: string, init: () => T): T;
|
|
|
|
export { createGlobal, globalVar };
|