/** * 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 TableSortDirection: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; export type TableSortDirection = typeof TableSortDirection[keyof typeof TableSortDirection]; export declare function instanceOfTableSortDirection(value: any): boolean; export declare function TableSortDirectionFromJSON(json: any): TableSortDirection; export declare function TableSortDirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableSortDirection; export declare function TableSortDirectionToJSON(value?: TableSortDirection | null): any; export declare function TableSortDirectionToJSONTyped(value: any, ignoreDiscriminator: boolean): TableSortDirection;