mirror of
https://github.com/rjNemo/federation
synced 2026-06-07 18:56:39 +00:00
8 lines
319 B
Text
8 lines
319 B
Text
// @flow strict
|
|
export type ObjMap<T> = { [key: string]: T, __proto__: null, ... };
|
|
export type ObjMapLike<T> = ObjMap<T> | { [key: string]: T, ... };
|
|
|
|
export type ReadOnlyObjMap<T> = { +[key: string]: T, __proto__: null, ... };
|
|
export type ReadOnlyObjMapLike<T> =
|
|
| ReadOnlyObjMap<T>
|
|
| { +[key: string]: T, ... };
|