mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 12:10:24 +00:00
4 lines
215 B
TypeScript
4 lines
215 B
TypeScript
declare function logged<T extends object>(name: string, toLog: T, options?: {}): T;
|
|
declare function createLazyProxy<FactoryResult>(factory: () => FactoryResult): FactoryResult;
|
|
|
|
export { createLazyProxy, logged };
|