mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-22 15:02:23 +00:00
d1e1297f6d
Change-type: minor Signed-off-by: Cameron Diver <cameron@balena.io>
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;
|