appcenter-cli
Version:
Command line tool for Visual Studio App Center
28 lines (25 loc) • 726 B
text/typescript
/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
import {
FileAssetsCreateOptionalParams,
FileAssetsCreateResponse
} from "../models";
/** Interface representing a FileAssets. */
export interface FileAssets {
/**
* Create a new asset to upload a file
* @param ownerName The name of the owner
* @param appName The name of the application
* @param options The options parameters.
*/
create(
ownerName: string,
appName: string,
options?: FileAssetsCreateOptionalParams
): Promise<FileAssetsCreateResponse>;
}