@apideck/node
Version:
Apideck Node.js SDK
25 lines (24 loc) • 747 B
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* The type of resource. Could be file, folder or url
* @export
* @enum {string}
*/
export declare enum FileType {
file = "file",
folder = "folder",
url = "url"
}
export declare function FileTypeFromJSON(json: any): FileType;
export declare function FileTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileType;
export declare function FileTypeToJSON(value?: FileType | null): any;