mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 21:57:54 +00:00
2a27b1d51f
This is a massive commit, but nothing related to runtime has actually changed, only the lint errors have changed. Change-type: patch Signed-off-by: Cameron Diver <cameron@balena.io>
8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
interface Dictionary<T> {
|
|
[key: string]: T;
|
|
}
|
|
|
|
type Callback<T> = (err?: Error, res?: T) => void;
|
|
|
|
type Nullable<T> = T | null | undefined;
|