ALTER.d.ts 474 B

12345678910111213
  1. import { Labels, TimeSeriesDuplicatePolicies } from '.';
  2. import { TsIgnoreOptions } from './ADD';
  3. export declare const FIRST_KEY_INDEX = 1;
  4. interface AlterOptions {
  5. RETENTION?: number;
  6. CHUNK_SIZE?: number;
  7. DUPLICATE_POLICY?: TimeSeriesDuplicatePolicies;
  8. LABELS?: Labels;
  9. IGNORE?: TsIgnoreOptions;
  10. }
  11. export declare function transformArguments(key: string, options?: AlterOptions): Array<string>;
  12. export declare function transformReply(): 'OK';
  13. export {};