import type { ConfigWithDefaults } from '../config/index.ts'; import type { EnvironmentResult } from '../environment/index.ts'; import type { Logger } from '../isomorphic/types.ts'; type Status = 'failure' | 'success'; /** * Tell Happo that a job comparing two SHAs had to be cancelled for some reason. * * @see https://happo.io/docs/api#cancelJob */ export default function cancelJob(status: Status, message: string, config: ConfigWithDefaults, { beforeSha, afterSha, link }: EnvironmentResult, logger: Logger): Promise; export {}; //# sourceMappingURL=cancelJob.d.ts.map