mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-03 14:10:15 +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 };
|