balena-supervisor/typings/docker-delta.d.ts
Cameron Diver 2a27b1d51f Move to resin-lint 3 and fix lint errors
This is a massive commit, but nothing related to runtime has actually
changed, only the lint errors have changed.

Change-type: patch
Signed-off-by: Cameron Diver <cameron@balena.io>
2019-05-26 18:54:09 +01:00

13 lines
319 B
TypeScript

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