// import { // transformArguments as transformInfoArguments, // InfoRawReply, // InfoReply, // transformReply as transformInfoReply // } from './INFO'; // export { IS_READ_ONLY, FIRST_KEY_INDEX } from './INFO'; // export function transformArguments(key: string): Array { // const args = transformInfoArguments(key); // args.push('DEBUG'); // return args; // } // type InfoDebugRawReply = [ // ...InfoRawReply, // 'keySelfName', // string, // 'chunks', // Array<[ // 'startTimestamp', // number, // 'endTimestamp', // number, // 'samples', // number, // 'size', // number, // 'bytesPerSample', // string // ]> // ]; // interface InfoDebugReply extends InfoReply { // keySelfName: string; // chunks: Array<{ // startTimestamp: number; // endTimestamp: number; // samples: number; // size: number; // bytesPerSample: string; // }>; // } // export function transformReply(rawReply: InfoDebugRawReply): InfoDebugReply { // const reply = transformInfoReply(rawReply as unknown as InfoRawReply); // (reply as InfoDebugReply).keySelfName = rawReply[25]; // (reply as InfoDebugReply).chunks = rawReply[27].map(chunk => ({ // startTimestamp: chunk[1], // endTimestamp: chunk[3], // samples: chunk[5], // size: chunk[7], // bytesPerSample: chunk[9] // })); // return reply as InfoDebugReply; // }