/// export declare type ExecutorResult = { status: 'success'; result: Sanity.SchemaDef.Schema; } | { status: 'error'; error: any; }; export interface ExecutorOptions { /** * Path of the schema entry point */ schemaPath: string; /** * Optionally provide a path to a .babelrc file. This will be sent to the * babel options while loading the schema. * * `babelOptions` takes precedence over `babelrcPath` */ babelrcPath?: string; /** * Optionally provide babel options inline. These are serialized as JSON * and sent over to the forked process normalizing the schema. * * `babelOptions` takes precedence over `babelrcPath` */ babelOptions?: any; /** * Optionally provide a working directory. This will be passed down to * `@babel/register` as `cwd` */ cwd?: string; } //# sourceMappingURL=schema-executor.d.ts.map