반응형

특정값 배열

type method = "GET" | "POST" | "DELETE"

interface ConfigType{
  method: method[],
 
}

any 타입의 req.method 

method.includes(req.method as any)

 

반응형
복사했습니다!