ottoman
Version:
Ottoman Couchbase ODM
12 lines (11 loc) • 370 B
TypeScript
type PathToN1QLOperationType = 'member' | 'subscript';
type PathToN1QLExpressionType = 'identifier' | 'string_literal';
export type PathToN1QLItemType = {
operation: PathToN1QLOperationType;
expression: {
type: PathToN1QLExpressionType;
value: string;
};
};
export declare const pathToN1QL: (path: PathToN1QLItemType[]) => string;
export {};