From 291803c31f829fe0d32bb3207bc11def95a7408c Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 20:05:50 +0100 Subject: Urađena test aplikacija. Povezan front i back. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../@angular/cli/models/schematic-command.d.ts | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 sandbox/testAppNevena/Front/node_modules/@angular/cli/models/schematic-command.d.ts (limited to 'sandbox/testAppNevena/Front/node_modules/@angular/cli/models/schematic-command.d.ts') diff --git a/sandbox/testAppNevena/Front/node_modules/@angular/cli/models/schematic-command.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular/cli/models/schematic-command.d.ts new file mode 100644 index 00000000..267b8fc2 --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/@angular/cli/models/schematic-command.d.ts @@ -0,0 +1,55 @@ +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +import { logging } from '@angular-devkit/core'; +import { workflow } from '@angular-devkit/schematics'; +import { FileSystemCollection, FileSystemEngine, FileSystemSchematic, NodeWorkflow } from '@angular-devkit/schematics/tools'; +import { BaseCommandOptions, Command } from './command'; +import { Arguments, CommandContext, CommandDescription, Option } from './interface'; +export interface BaseSchematicSchema { + debug?: boolean; + dryRun?: boolean; + force?: boolean; + interactive?: boolean; + defaults?: boolean; + packageRegistry?: string; +} +export interface RunSchematicOptions extends BaseSchematicSchema { + collectionName: string; + schematicName: string; + additionalOptions?: { + [key: string]: {}; + }; + schematicOptions?: string[]; + showNothingDone?: boolean; +} +export declare class UnknownCollectionError extends Error { + constructor(collectionName: string); +} +export declare abstract class SchematicCommand extends Command { + protected readonly allowPrivateSchematics: boolean; + protected readonly useReportAnalytics = false; + protected _workflow: NodeWorkflow; + protected defaultCollectionName: string; + protected collectionName: string; + protected schematicName?: string; + constructor(context: CommandContext, description: CommandDescription, logger: logging.Logger); + initialize(options: T & Arguments): Promise; + printHelp(): Promise; + printHelpUsage(): Promise; + protected getEngine(): FileSystemEngine; + protected getCollection(collectionName: string): FileSystemCollection; + protected getSchematic(collection: FileSystemCollection, schematicName: string, allowPrivate?: boolean): FileSystemSchematic; + protected setPathOptions(options: Option[], workingDir: string): { + [name: string]: string; + }; + protected createWorkflow(options: BaseSchematicSchema): Promise; + protected getDefaultSchematicCollection(): Promise; + protected runSchematic(options: RunSchematicOptions): Promise; + protected parseFreeFormArguments(schematicOptions: string[]): Promise; + protected parseArguments(schematicOptions: string[], options: Option[] | null): Promise; +} -- cgit v1.2.3