Skip to content

Commit 34434cd

Browse files
style: update formatting
1 parent 295ca15 commit 34434cd

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed
+13-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
export enum RouteParamtypes {
2-
REQUEST=0,
3-
RESPONSE=1,
4-
NEXT=2,
5-
BODY=3,
6-
QUERY=4,
7-
PARAM=5,
8-
HEADERS=6,
9-
SESSION=7,
10-
FILE=8,
11-
FILES=9,
12-
HOST=10,
13-
IP=11,
14-
RAW_BODY=12,
2+
REQUEST = 0,
3+
RESPONSE = 1,
4+
NEXT = 2,
5+
BODY = 3,
6+
QUERY = 4,
7+
PARAM = 5,
8+
HEADERS = 6,
9+
SESSION = 7,
10+
FILE = 8,
11+
FILES = 9,
12+
HOST = 10,
13+
IP = 11,
14+
RAW_BODY = 12,
1515
}

packages/microservices/enums/rpc-paramtype.enum.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {RouteParamtypes} from "@nestjs/common/enums/route-paramtypes.enum";
1+
import { RouteParamtypes } from '@nestjs/common/enums/route-paramtypes.enum';
22

33
export enum RpcParamtype {
44
PAYLOAD = RouteParamtypes.BODY,

packages/websockets/enums/ws-paramtype.enum.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {RouteParamtypes} from "@nestjs/common/enums/route-paramtypes.enum";
1+
import { RouteParamtypes } from '@nestjs/common/enums/route-paramtypes.enum';
22

33
export enum WsParamtype {
44
SOCKET = RouteParamtypes.REQUEST,

0 commit comments

Comments
 (0)