mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
02736113a3
Change-type: patch Closes: #868 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 TypedError = require('typed-error');
|
|
import { Duplex } from 'stream';
|
|
|
|
export class OutOfSyncError extends TypedError {}
|
|
|
|
export function applyDelta(
|
|
imageSource: string,
|
|
opts: { log: (str: string) => void; timeout: number },
|
|
): Duplex;
|
|
}
|