couchbase-index-manager
Version:
Manage Couchbase indexes during the CI/CD process
7 lines (6 loc) • 329 B
TypeScript
/**
* Ensures that the N1QL identifier is escaped with backticks
*/
export declare function ensureEscaped(identifier: string): string;
export declare function ensureEscaped(identifier: null | undefined): null | undefined;
export declare function ensureEscaped(identifier: string | null | undefined): string | null | undefined;