mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 12:10:24 +00:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
declare function getBrowserCompatibilityReport(): {
|
|
optionalChaining: string | boolean;
|
|
nullishCoalescing: string | boolean;
|
|
weakRef: string | boolean;
|
|
cryptoUuid: string | boolean;
|
|
};
|
|
|
|
export { getBrowserCompatibilityReport };
|