/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const AssetType: { readonly Unknown: "Unknown"; readonly Image: "Image"; readonly Audio: "Audio"; readonly Video: "Video"; }; export type AssetType = typeof AssetType[keyof typeof AssetType]; export declare function instanceOfAssetType(value: any): boolean; export declare function AssetTypeFromJSON(json: any): AssetType; export declare function AssetTypeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AssetType; export declare function AssetTypeToJSON(value?: AssetType | null): any;