mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 13:47:52 +00:00
6daed83d88
Change-Type: patch
14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
declare module 'rindle' {
|
|
export function extract(
|
|
stream: NodeJS.ReadableStream,
|
|
callback: (error: Error, data: string) => void,
|
|
): void;
|
|
|
|
export function wait(
|
|
stream: {
|
|
on(event: string, callback: Function): void;
|
|
},
|
|
callback: (error: Error, data: string) => void,
|
|
): void;
|
|
}
|