export { CancellablePromise } from '@theintern/common';
export interface JobState {
    buildId?: number;
    extra?: {};
    name?: string;
    status?: string;
    success: boolean;
    tags?: string[];
    visibility?: string;
}
