mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-23 23:42:24 +00:00
14 lines
294 B
TypeScript
14 lines
294 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;
|
||
|
}
|