/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.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. */ /** * Location in the browser where Dynamic will attempt to store the JWT token. * @export * @enum {string} */ export declare enum AuthStorageEnum { Localstorage = "localstorage", Cookie = "cookie" } export declare function AuthStorageEnumFromJSON(json: any): AuthStorageEnum; export declare function AuthStorageEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthStorageEnum; export declare function AuthStorageEnumToJSON(value?: AuthStorageEnum | null): any;