import type { ConfigWithDefaults } from '../config/index.ts'; import type { EnvironmentResult } from '../environment/index.ts'; import type { Logger } from '../isomorphic/types.ts'; export interface StartJobResult { id: number; url: string; } /** * Tell Happo that we are about to run a job * * @see https://happo.io/docs/api#createJob */ export default function startJob(config: ConfigWithDefaults, { beforeSha, afterSha, link, message }: EnvironmentResult, logger: Logger): Promise; //# sourceMappingURL=startJob.d.ts.map