- itsm/ -> workspace/guardia-itsm/ - manager/ -> workspace/guardia-manager/ - app/ -> workspace/guardia-messenger/ - manual/ -> workspace/guardia-docs/ workspace/zioinfo-web/ unchanged. git mv preserves full commit history. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
352 B
TypeScript
8 lines
352 B
TypeScript
declare function ToObject<T extends object>(value: number): Number;
|
|
declare function ToObject<T extends object>(value: boolean): Boolean;
|
|
declare function ToObject<T extends object>(value: string): String;
|
|
declare function ToObject<T extends object>(value: bigint): BigInt;
|
|
declare function ToObject<T extends object>(value: T): T;
|
|
|
|
export = ToObject;
|