UNPKG

@o3r/pipeline

Version:

A package that provides toolchain related helpers.

12 lines 395 B
import type { SchematicOptionObject } from '@o3r/schematics'; type Toolchains = 'github'; export interface NgAddSchematicsSchema extends SchematicOptionObject { /** The DevOps toolchain to create */ toolchain: Toolchains; /** The CI runner */ runner: string; /** A custom npm registry */ npmRegistry?: string | undefined; } export {}; //# sourceMappingURL=schema.d.ts.map