2018-09-01 17:30:56 -07:00
|
|
|
interface Dictionary<T> {
|
|
|
|
[key: string]: T;
|
2018-11-02 14:17:58 +00:00
|
|
|
}
|
2018-12-12 15:27:15 +00:00
|
|
|
|
2019-05-26 18:51:58 +01:00
|
|
|
type Callback<T> = (err?: Error, res?: T) => void;
|
2019-01-21 11:18:41 +00:00
|
|
|
|
|
|
|
type Nullable<T> = T | null | undefined;
|