mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 11:36:39 +00:00
7 lines
No EOL
213 B
TypeScript
7 lines
No EOL
213 B
TypeScript
import "core-js/features/object/from-entries";
|
|
declare global {
|
|
interface ObjectConstructor {
|
|
fromEntries<K extends string, V>(map: [K, V][]): Record<K, V>;
|
|
}
|
|
}
|
|
//# sourceMappingURL=object.d.ts.map
|