11 lines
474 B
TypeScript
11 lines
474 B
TypeScript
import { PagedAsyncIterableIterator } from "@azure/core-paging";
|
|
import { Operation, OperationsListOptionalParams } from "../models";
|
|
/** Interface representing a Operations. */
|
|
export interface Operations {
|
|
/**
|
|
* Lists all of the available Microsoft.Subscription API operations.
|
|
* @param options The options parameters.
|
|
*/
|
|
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
}
|
|
//# sourceMappingURL=operations.d.ts.map
|