mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 11:36:39 +00:00
9 lines
No EOL
261 B
TypeScript
9 lines
No EOL
261 B
TypeScript
/// <reference lib="esnext.array" />
|
|
import "core-js/features/array/flat";
|
|
import "core-js/features/array/flat-map";
|
|
declare global {
|
|
interface Array<T> {
|
|
flat<U>(this: ReadonlyArray<U>[], depth?: 1): U[];
|
|
}
|
|
}
|
|
//# sourceMappingURL=array.d.ts.map
|