mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2025-02-20 18:28:57 +00:00
3 lines
65 B
Plaintext
3 lines
65 B
Plaintext
// @flow strict
|
|
export type PromiseOrValue<+T> = Promise<T> | T;
|