-first commit
This commit is contained in:
17
node_modules/@redis/client/dist/lib/commands/GETRANGE.d.ts
generated
vendored
Normal file
17
node_modules/@redis/client/dist/lib/commands/GETRANGE.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { CommandParser } from '../client/parser';
|
||||
import { RedisArgument, BlobStringReply, NullReply } from '../RESP/types';
|
||||
declare const _default: {
|
||||
readonly CACHEABLE: true;
|
||||
readonly IS_READ_ONLY: true;
|
||||
/**
|
||||
* Returns a substring of the string stored at a key
|
||||
* @param parser - The Redis command parser
|
||||
* @param key - Key to get substring from
|
||||
* @param start - Start position of the substring
|
||||
* @param end - End position of the substring
|
||||
*/
|
||||
readonly parseCommand: (this: void, parser: CommandParser, key: RedisArgument, start: number, end: number) => void;
|
||||
readonly transformReply: () => BlobStringReply | NullReply;
|
||||
};
|
||||
export default _default;
|
||||
//# sourceMappingURL=GETRANGE.d.ts.map
|
||||
Reference in New Issue
Block a user