mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-19 03:06:27 +00:00
0ef9cc189b
Change-type: patch
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
interface Dictionary<T> {
|
|
[key: string]: T;
|
|
}
|
|
|
|
type Callback<T> = (err?: Error, res?: T) => void;
|
|
|
|
type Nullable<T> = T | null | undefined;
|
|
type Resolvable<T> = T | Promise<T>;
|