mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-22 15:02:23 +00:00
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;
|
||
|
}
|