mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-21 06:33:28 +00:00
d21a18f353
Change-type: patch Signed-off-by: Scott Lowe <scott@balena.io>
20 lines
321 B
TypeScript
20 lines
321 B
TypeScript
declare module 'balena-preload' {
|
|
export class Preloader {
|
|
constructor(...args: any[]);
|
|
|
|
cleanup(): Promise<void>;
|
|
|
|
on(...args: any[]): void;
|
|
|
|
preload(): Promise<void>;
|
|
|
|
prepare(): Promise<void>;
|
|
|
|
setAppIdAndCommit(appId: string | number, commit: string): Promise<void>;
|
|
|
|
config: any;
|
|
|
|
stderr: any;
|
|
}
|
|
}
|