import { Readable } from 'stream'; import { LogFunction } from '../utils'; export type CurrentBuildClientOptions = { log?: LogFunction; }; export interface CurrentBuildClient { downloadCurrentBuild(name: string, branch?: string): Promise; getCurrentBuildDate(name: string, branch?: string): Promise; }