Skip to content

Commit e3eabcc

Browse files
committed
nits
reoder imports
1 parent 30abc9f commit e3eabcc

File tree

342 files changed

+349
-346
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

342 files changed

+349
-346
lines changed

packages/client/lib/commands/ACL_CAT.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '../RESP/types';
33

44
export default {
55
NOT_KEYED_COMMAND: true,

packages/client/lib/commands/ACL_DELUSER.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { NumberReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { NumberReply, Command } from '../RESP/types';
33
import { RedisVariadicArgument } from './generic-transformers';
44

55
export default {

packages/client/lib/commands/ACL_DRYRUN.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { RedisArgument, SimpleStringReply, BlobStringReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { RedisArgument, SimpleStringReply, BlobStringReply, Command } from '../RESP/types';
33

44
export default {
55
NOT_KEYED_COMMAND: true,

packages/client/lib/commands/ACL_GENPASS.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { BlobStringReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { BlobStringReply, Command } from '../RESP/types';
33

44
export default {
55
NOT_KEYED_COMMAND: true,

packages/client/lib/commands/ACL_GETUSER.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { RedisArgument, TuplesToMapReply, BlobStringReply, ArrayReply, UnwrapReply, Resp2Reply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { RedisArgument, TuplesToMapReply, BlobStringReply, ArrayReply, UnwrapReply, Resp2Reply, Command } from '../RESP/types';
33

44
type AclUser = TuplesToMapReply<[
55
[BlobStringReply<'flags'>, ArrayReply<BlobStringReply>],

packages/client/lib/commands/ACL_LIST.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ArrayReply, BlobStringReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { ArrayReply, BlobStringReply, Command } from '../RESP/types';
33

44
export default {
55
NOT_KEYED_COMMAND: true,

packages/client/lib/commands/ACL_LOAD.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { SimpleStringReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { SimpleStringReply, Command } from '../RESP/types';
33

44
export default {
55
NOT_KEYED_COMMAND: true,

packages/client/lib/commands/ACL_LOG_RESET.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { SimpleStringReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { SimpleStringReply, Command } from '../RESP/types';
33
import ACL_LOG from './ACL_LOG';
44

55
export default {

packages/client/lib/commands/ACL_SAVE.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { SimpleStringReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { SimpleStringReply, Command } from '../RESP/types';
33

44
export default {
55
NOT_KEYED_COMMAND: true,

packages/client/lib/commands/ACL_SETUSER.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { RedisArgument, SimpleStringReply, Command } from '../RESP/types';
21
import { CommandParser } from '../client/parser';
2+
import { RedisArgument, SimpleStringReply, Command } from '../RESP/types';
33
import { RedisVariadicArgument } from './generic-transformers';
44

55
export default {

0 commit comments

Comments
 (0)