@jmespath-community/jmespath
Version:
Typescript implementation of the JMESPath Community specification
12 lines (11 loc) • 352 B
TypeScript
export declare class Text {
private _text;
constructor(text: string);
get string(): string;
get length(): number;
compareTo(other: string): number;
static get comparer(): (lhs: string, rhs: string) => number;
static compare(left: Text, right: Text): number;
reverse(): string;
private get codePoints();
}