/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 FavoriteSortBy: { readonly FAVORITED_ON: "FAVORITED_ON"; readonly NAME: "NAME"; }; export type FavoriteSortBy = typeof FavoriteSortBy[keyof typeof FavoriteSortBy]; export declare function instanceOfFavoriteSortBy(value: any): boolean; export declare function FavoriteSortByFromJSON(json: any): FavoriteSortBy; export declare function FavoriteSortByFromJSONTyped(json: any, ignoreDiscriminator: boolean): FavoriteSortBy; export declare function FavoriteSortByToJSON(value?: FavoriteSortBy | null): any; export declare function FavoriteSortByToJSONTyped(value: any, ignoreDiscriminator: boolean): FavoriteSortBy;