mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-02-11 21:45:38 +00:00
10 lines
147 B
TypeScript
10 lines
147 B
TypeScript
interface Dictionary<T> {
|
|
[key: string]: T;
|
|
}
|
|
|
|
interface Callback<T> {
|
|
(err?: Error, res?: T): void;
|
|
}
|
|
|
|
type Nullable<T> = T | null | undefined;
|