@microsoft.azure/autorest.incubator
Version:
AutoRest incubator project
15 lines • 784 B
TypeScript
import { Class } from '#csharp/code-dom/class';
import { Namespace } from '#csharp/code-dom/namespace';
import { Statements } from '#csharp/code-dom/statements/statement';
import { Variable } from '#csharp/code-dom/variable';
import { Schema } from '#csharp/lowlevel-generator/code-model';
import { State } from './state';
export interface WithState extends Class {
state: State;
}
export declare class ModelCmdlet extends Class {
state: State;
constructor(namespace: Namespace, schema: Schema, state: State, objectInitializer?: Partial<ModelCmdlet>);
}
export declare function addPowershellParameters($class: WithState, schema: Schema, prop: Variable, ensureMemberIsCreated?: Statements | undefined, expandName?: boolean): void;
//# sourceMappingURL=model-cmdlet.d.ts.map