UNPKG

@aneoconsultingfr/armonik.api

Version:

gRPC API to interact with ArmoniK built for the web

16 lines (14 loc) 645 B
declare const protobufPackage = "armonik.api.grpc.v1.sort_direction"; /** Represents every available sort directions. */ declare enum SortDirection { /** SORT_DIRECTION_UNSPECIFIED - Unspecified. Do not use. */ SORT_DIRECTION_UNSPECIFIED = 0, /** SORT_DIRECTION_ASC - Ascending. */ SORT_DIRECTION_ASC = 1, /** SORT_DIRECTION_DESC - Descending. */ SORT_DIRECTION_DESC = 2, UNRECOGNIZED = -1 } declare function sortDirectionFromJSON(object: any): SortDirection; declare function sortDirectionToJSON(object: SortDirection): string; export { SortDirection, protobufPackage, sortDirectionFromJSON, sortDirectionToJSON };