UNPKG

weaviate-client

Version:
11 lines (10 loc) 224 B
export interface SortArgs { path: string[]; order?: string; } export type SortOrder = 'asc' | 'desc'; export default class GraphQLSort { private args; constructor(args: SortArgs[]); toString(): string; }