UNPKG

@yext/search-core

Version:

Typescript Networking Library for the Yext Search API

23 lines (22 loc) 505 B
/** * The direction of a sort. * * @public */ export declare enum Direction { /** * An ascending sort * * @remarks * For numbers this sort is low to high. For text it is alphabetical. For dates it is chronological order. */ Ascending = "ASC", /** * A descending soft * * @remarks * For numbers this sort is high to low. For text it is reverse alphabetical. For dates it is reverse * chronological order. */ Descending = "DESC" }