balena-supervisor/typings/docker-delta.d.ts
Pagan Gazzard 379730a9e1 Update typed-error to 3.x
Update typed-error from 2.0.0 to 3.2.1

Change-type: patch
2020-08-19 10:07:54 +01:00

13 lines
317 B
TypeScript

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;
}