balena-supervisor/typings/docker-delta.d.ts

13 lines
317 B
TypeScript
Raw Normal View History

declare module 'docker-delta' {
// Incomplete type definitions
import { Duplex } from 'stream';
import { TypedError } from 'typed-error';
export class OutOfSyncError extends TypedError {}
export function applyDelta(
imageSource: string,
opts: { log: (str: string) => void; timeout: number },
): Duplex;
}