UNPKG

480 BTypeScriptView Raw
1import { Job } from '@expo/eas-build-job';
2import { bunyan } from '@expo/logger';
3interface BuildContextOptions {
4 workingdir: string;
5 logger: bunyan;
6}
7declare class BuildContext<TJob extends Job> {
8 readonly job: TJob;
9 readonly workingdir: string;
10 readonly logger: bunyan;
11 constructor(job: TJob, options: BuildContextOptions);
12 get buildDirectory(): string;
13 get reactNativeProjectDirectory(): string;
14}
15export { BuildContext, BuildContextOptions };