mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 05:37:53 +00:00
2a27b1d51f
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>
13 lines
319 B
TypeScript
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;
|
|
}
|