mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
ec37db597d
Change-type: patch Signed-off-by: Cameron Diver <cameron@balena.io>
8 lines
105 B
TypeScript
8 lines
105 B
TypeScript
interface Dictionary<T> {
|
|
[key: string]: T;
|
|
}
|
|
|
|
interface Callback<T> {
|
|
(err?: Error, res?: T): void;
|
|
}
|