mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 06:07:57 +00:00
379730a9e1
Update typed-error from 2.0.0 to 3.2.1 Change-type: patch
13 lines
317 B
TypeScript
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;
|
|
}
|