export interface PresetGeneratorSchema { /** If true, the workspace will be initialized for package development */ packages?: boolean; /** If true, the workspace will be initialized for standalone development */ standalone?: boolean; skipInstall?: boolean; license?: 'none' | 'mit' | 'gpl'; /** The URL of the repository */ repositoryUrl?: string; /** The prefix for the angular components */ prefix?: string; }