INFO.d.ts 494 B

1234567891011121314151617181920
  1. export declare const FIRST_KEY_INDEX = 1;
  2. export declare const IS_READ_ONLY = true;
  3. export declare function transformArguments(key: string): Array<string>;
  4. export type InfoRawReply = [
  5. _: string,
  6. k: number,
  7. _: string,
  8. width: number,
  9. _: string,
  10. depth: number,
  11. _: string,
  12. decay: string
  13. ];
  14. export interface InfoReply {
  15. k: number;
  16. width: number;
  17. depth: number;
  18. decay: number;
  19. }
  20. export declare function transformReply(reply: InfoRawReply): InfoReply;