oidc-client
Version:
OpenID Connect (OIDC) & OAuth2 client library
11 lines (10 loc) • 523 B
TypeScript
import { Arguments, Option } from '../models/interface';
import { SchematicCommand } from '../models/schematic-command';
import { Schema as UpdateCommandSchema } from './update';
export declare class UpdateCommand extends SchematicCommand<UpdateCommandSchema> {
readonly allowMissingWorkspace = true;
collectionName: string;
schematicName: string;
parseArguments(schematicOptions: string[], schema: Option[]): Promise<Arguments>;
run(options: UpdateCommandSchema & Arguments): Promise<number | void>;
}