import type { AdspConfiguration, EnvironmentName } from '@abgov/nx-oc'; export interface Schema { name: string; env: EnvironmentName; accessToken?: string; tenant?: string; } export interface NormalizedSchema extends Schema { projectName: string; projectRoot: string; adsp: AdspConfiguration; }