Skip to content

Commit

Permalink
style: update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Mar 22, 2024
1 parent 295ca15 commit 34434cd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions packages/common/enums/route-paramtypes.enum.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export enum RouteParamtypes {
REQUEST=0,
RESPONSE=1,
NEXT=2,
BODY=3,
QUERY=4,
PARAM=5,
HEADERS=6,
SESSION=7,
FILE=8,
FILES=9,
HOST=10,
IP=11,
RAW_BODY=12,
REQUEST = 0,
RESPONSE = 1,
NEXT = 2,
BODY = 3,
QUERY = 4,
PARAM = 5,
HEADERS = 6,
SESSION = 7,
FILE = 8,
FILES = 9,
HOST = 10,
IP = 11,
RAW_BODY = 12,
}
2 changes: 1 addition & 1 deletion packages/microservices/enums/rpc-paramtype.enum.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {RouteParamtypes} from "@nestjs/common/enums/route-paramtypes.enum";
import { RouteParamtypes } from '@nestjs/common/enums/route-paramtypes.enum';

export enum RpcParamtype {
PAYLOAD = RouteParamtypes.BODY,
Expand Down
2 changes: 1 addition & 1 deletion packages/websockets/enums/ws-paramtype.enum.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {RouteParamtypes} from "@nestjs/common/enums/route-paramtypes.enum";
import { RouteParamtypes } from '@nestjs/common/enums/route-paramtypes.enum';

export enum WsParamtype {
SOCKET = RouteParamtypes.REQUEST,
Expand Down

0 comments on commit 34434cd

Please sign in to comment.