You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-09 00:22:08 +03:00
use "export { x as y }" instead of import & const
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
import { transformReplyTuples } from './generic-transformers';
|
||||
|
||||
export function transformArguments(parameter: string): Array<string> {
|
||||
return ['CONFIG', 'GET', parameter];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyTuples;
|
||||
export { transformReplyTuples as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,3 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
interface CopyCommandOptions {
|
||||
destinationDb?: number;
|
||||
replace?: boolean;
|
||||
@@ -21,4 +19,4 @@ export function transformArguments(source: string, destination: string, options?
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { pushVerdictArguments, transformReplyBoolean } from './generic-transformers';
|
||||
import { pushVerdictArguments } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
@@ -9,4 +9,4 @@ export function transformArguments(keys: string | Array<string>): RedisCommandAr
|
||||
return pushVerdictArguments(['EXISTS'], keys);
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,7 +1,5 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export function transformArguments(key: string, seconds: number): Array<string> {
|
||||
return ['EXPIRE', key, seconds.toString()];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import { transformEXAT, transformReplyBoolean } from './generic-transformers';
|
||||
import { transformEXAT } from './generic-transformers';
|
||||
|
||||
export function transformArguments(key: string, timestamp: number | Date): Array<string> {
|
||||
return [
|
||||
@@ -8,4 +8,4 @@ export function transformArguments(key: string, timestamp: number | Date): Array
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { GeoSearchFrom, GeoSearchBy, GeoReplyWith, GeoSearchOptions, transformGeoMembersWithReply } from './generic-transformers';
|
||||
import { GeoSearchFrom, GeoSearchBy, GeoReplyWith, GeoSearchOptions } from './generic-transformers';
|
||||
import { transformArguments as geoSearchTransformArguments } from './GEOSEARCH';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './GEOSEARCH';
|
||||
@@ -20,4 +20,4 @@ export function transformArguments(
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformGeoMembersWithReply;
|
||||
export { transformGeoMembersWithReply as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string, field: string): Array<string> {
|
||||
return ['HEXISTS', key, field];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyTuples } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string): Array<string> {
|
||||
return ['HGETALL', key];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyTuples;
|
||||
export { transformReplyTuples as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,3 @@
|
||||
import { transformReplyTuples } from './generic-transformers';
|
||||
import { transformArguments as transformHRandFieldCountArguments } from './HRANDFIELD_COUNT';
|
||||
|
||||
export { FIRST_KEY_INDEX } from './HRANDFIELD_COUNT';
|
||||
@@ -10,4 +9,4 @@ export function transformArguments(key: string, count: number): Array<string> {
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyTuples;
|
||||
export { transformReplyTuples as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string, field: string, value: string): Array<string> {
|
||||
return ['HSETNX', key, field, value];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,7 +1,5 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export function transformArguments(key: string, db: number): Array<string> {
|
||||
return ['MOVE', key, db.toString()];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,3 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(toSet: Array<[string, string]> | Array<string> | Record<string, string>): Array<string> {
|
||||
@@ -16,4 +14,4 @@ export function transformArguments(toSet: Array<[string, string]> | Array<string
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string): Array<string> {
|
||||
return ['PERSIST', key];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string, milliseconds: number): Array<string> {
|
||||
return ['PEXPIRE', key, milliseconds.toString()];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import { transformPXAT, transformReplyBoolean } from './generic-transformers';
|
||||
import { transformPXAT } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
@@ -10,4 +10,4 @@ export function transformArguments(key: string, millisecondsTimestamp: number |
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { pushVerdictArguments, transformReplyBoolean } from './generic-transformers';
|
||||
import { pushVerdictArguments } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
@@ -7,4 +7,4 @@ export function transformArguments(key: string, element: string | Array<string>)
|
||||
return pushVerdictArguments(['PFADD', key], element);
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string, newKey: string): Array<string> {
|
||||
return ['RENAMENX', key, newKey];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,8 +1,8 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { pushVerdictArguments, transformReplyBooleanArray } from './generic-transformers';
|
||||
import { pushVerdictArguments } from './generic-transformers';
|
||||
|
||||
export function transformArguments(sha1: string | Array<string>): RedisCommandArguments {
|
||||
return pushVerdictArguments(['SCRIPT', 'EXISTS'], sha1);
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBooleanArray;
|
||||
export { transformReplyBooleanArray as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string, value: string): Array<string> {
|
||||
return ['SETNX', key, value];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string, member: string): Array<string> {
|
||||
return ['SISMEMBER', key, member];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBooleanArray } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(key: string, members: Array<string>): Array<string> {
|
||||
return ['SMISMEMBER', key, ...members];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBooleanArray;
|
||||
export { transformReplyBooleanArray as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export function transformArguments(source: string, destination: string, member: string): Array<string> {
|
||||
return ['SMOVE', source, destination, member];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import { pushVerdictArguments, transformReplyStreamMessages } from './generic-transformers';
|
||||
import { pushVerdictArguments } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
@@ -43,4 +43,4 @@ export function transformArguments(
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyStreamMessages;
|
||||
export { transformReplyStreamMessages as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 2;
|
||||
|
||||
export function transformArguments(key: string, group: string, consumer: string): Array<string> {
|
||||
return ['XGROUP', 'CREATECONSUMER', key, group, consumer];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,9 +1,7 @@
|
||||
import { transformReplyBoolean } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 2;
|
||||
|
||||
export function transformArguments(key: string, group: string): Array<string> {
|
||||
return ['XGROUP', 'DESTROY', key, group];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyBoolean;
|
||||
export { transformReplyBoolean as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,3 @@
|
||||
import { transformReplyStreamMessages } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export const IS_READ_ONLY = true;
|
||||
@@ -24,7 +22,7 @@ export function transformArguments(
|
||||
}
|
||||
|
||||
args.push(start, end, count.toString());
|
||||
|
||||
|
||||
if (options?.consumer) {
|
||||
args.push(options.consumer);
|
||||
}
|
||||
@@ -32,4 +30,4 @@ export function transformArguments(
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyStreamMessages;
|
||||
export { transformReplyStreamMessages as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,3 @@
|
||||
import { transformReplyStreamMessages } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export const IS_READ_ONLY = true;
|
||||
@@ -18,4 +16,4 @@ export function transformArguments(key: string, start: string, end: string, opti
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyStreamMessages;
|
||||
export { transformReplyStreamMessages as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,3 @@
|
||||
import { transformReplyStreamsMessages } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = (streams: Array<XReadStream> | XReadStream): string => {
|
||||
return Array.isArray(streams) ? streams[0].key : streams.key;
|
||||
};
|
||||
@@ -40,4 +38,4 @@ export function transformArguments(streams: Array<XReadStream> | XReadStream, op
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyStreamsMessages;
|
||||
export { transformReplyStreamsMessages as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,3 @@
|
||||
import { transformReplyStreamsMessages } from './generic-transformers';
|
||||
|
||||
export interface XReadGroupStream {
|
||||
key: string;
|
||||
id: string;
|
||||
@@ -54,4 +52,4 @@ export function transformArguments(
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyStreamsMessages;
|
||||
export { transformReplyStreamsMessages as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,3 @@
|
||||
import { transformReplyStreamMessages } from './generic-transformers';
|
||||
|
||||
interface XRangeRevOptions {
|
||||
COUNT?: number;
|
||||
}
|
||||
@@ -14,4 +12,4 @@ export function transformArguments(key: string, start: string, end: string, opti
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyStreamMessages;
|
||||
export { transformReplyStreamMessages as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import { transformArgumentNumberInfinity, transformReplyNumberInfinity, ZMember } from './generic-transformers';
|
||||
import { transformArgumentNumberInfinity, ZMember } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
@@ -56,11 +56,11 @@ export function transformArguments(key: string, members: ZMember | Array<ZMember
|
||||
for (const { score, value } of (Array.isArray(members) ? members : [members])) {
|
||||
args.push(
|
||||
transformArgumentNumberInfinity(score),
|
||||
value
|
||||
value
|
||||
);
|
||||
}
|
||||
|
||||
return args;
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyNumberInfinity;
|
||||
export { transformReplyNumberInfinity as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,4 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { transformReplySortedSetWithScores } from './generic-transformers';
|
||||
import { transformArguments as transformZDiffArguments } from './ZDIFF';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './ZDIFF';
|
||||
@@ -11,4 +10,4 @@ export function transformArguments(...args: Parameters<typeof transformZDiffArgu
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplySortedSetWithScores;
|
||||
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import { transformArgumentNumberInfinity, transformReplyNumberInfinity } from './generic-transformers';
|
||||
import { transformArgumentNumberInfinity } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
@@ -11,4 +11,4 @@ export function transformArguments(key: string, increment: number, member: strin
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyNumberInfinity;
|
||||
export { transformReplyNumberInfinity as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,4 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { transformReplySortedSetWithScores } from './generic-transformers';
|
||||
import { transformArguments as transformZInterArguments } from './ZINTER';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './ZINTER';
|
||||
@@ -11,4 +10,4 @@ export function transformArguments(...args: Parameters<typeof transformZInterArg
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplySortedSetWithScores;
|
||||
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { pushVerdictArguments, transformReplyNumberInfinityNullArray } from './generic-transformers';
|
||||
import { pushVerdictArguments } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
@@ -9,4 +9,4 @@ export function transformArguments(key: string, member: string | Array<string>):
|
||||
return pushVerdictArguments(['ZMSCORE', key], member);
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyNumberInfinityNullArray;
|
||||
export { transformReplyNumberInfinityNullArray as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,3 @@
|
||||
import { transformReplySortedSetWithScores } from './generic-transformers';
|
||||
import { transformArguments as transformZPopMaxArguments } from './ZPOPMAX';
|
||||
|
||||
export { FIRST_KEY_INDEX } from './ZPOPMAX';
|
||||
@@ -10,4 +9,4 @@ export function transformArguments(key: string, count: number): Array<string> {
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplySortedSetWithScores;
|
||||
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,3 @@
|
||||
import { transformReplySortedSetWithScores } from './generic-transformers';
|
||||
import { transformArguments as transformZPopMinArguments } from './ZPOPMIN';
|
||||
|
||||
export { FIRST_KEY_INDEX } from './ZPOPMIN';
|
||||
@@ -10,4 +9,4 @@ export function transformArguments(key: string, count: number): Array<string> {
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplySortedSetWithScores;
|
||||
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,3 @@
|
||||
import { transformReplySortedSetWithScores } from './generic-transformers';
|
||||
import { transformArguments as transformZRandMemberCountArguments } from './ZRANDMEMBER_COUNT';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './ZRANDMEMBER_COUNT';
|
||||
@@ -10,4 +9,4 @@ export function transformArguments(...args: Parameters<typeof transformZRandMemb
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplySortedSetWithScores;
|
||||
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,4 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { transformReplySortedSetWithScores } from './generic-transformers';
|
||||
import { ZRangeByScoreOptions, transformArguments as transformZRangeByScoreArguments } from './ZRANGEBYSCORE';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './ZRANGEBYSCORE';
|
||||
@@ -16,4 +15,4 @@ export function transformArguments(
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplySortedSetWithScores;
|
||||
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|
||||
|
@@ -1,4 +1,3 @@
|
||||
import { transformReplySortedSetWithScores } from './generic-transformers';
|
||||
import { transformArguments as transformZRangeArguments } from './ZRANGE';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './ZRANGE';
|
||||
@@ -10,4 +9,4 @@ export function transformArguments(...args: Parameters<typeof transformZRangeArg
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplySortedSetWithScores;
|
||||
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,3 @@
|
||||
import { transformReplyNumberInfinityNull } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
export const IS_READ_ONLY = true;
|
||||
@@ -8,4 +6,4 @@ export function transformArguments(key: string, member: string): Array<string> {
|
||||
return ['ZSCORE', key, member];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplyNumberInfinityNull;
|
||||
export { transformReplyNumberInfinityNull as transformReply } from './generic-transformers';
|
||||
|
@@ -1,5 +1,4 @@
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { transformReplySortedSetWithScores } from './generic-transformers';
|
||||
import { transformArguments as transformZUnionArguments } from './ZUNION';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './ZUNION';
|
||||
@@ -11,4 +10,4 @@ export function transformArguments(...args: Parameters<typeof transformZUnionArg
|
||||
];
|
||||
}
|
||||
|
||||
export const transformReply = transformReplySortedSetWithScores;
|
||||
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|
||||
|
Reference in New Issue
Block a user