mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-29 08:49:40 +00:00
9 lines
319 B
Plaintext
9 lines
319 B
Plaintext
// @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, ... };
|