@google-cloud/bigtable
Version:
Cloud Bigtable Client Library for Node.js
9 lines (8 loc) • 406 B
TypeScript
import { GetRowsOptions, PrefixRange } from '../tabular-api-surface';
export declare class TableUtils {
static getRanges(options: GetRowsOptions): PrefixRange[];
static lessThan(lhs: string, rhs: string): boolean;
static greaterThan(lhs: string, rhs: string): boolean;
static lessThanOrEqualTo(lhs: string, rhs: string): boolean;
static createPrefixRange(start: string): PrefixRange;
}