2018-09-02 00:30:56 +00: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 17:51:58 +00:00
|
|
|
type Callback<T> = (err?: Error, res?: T) => void;
|
2019-01-21 11:18:41 +00:00
|
|
|
|
|
|
|
type Nullable<T> = T | null | undefined;
|