UNPKG

ngx-testing-tools

Version:
4 lines (3 loc) 210 B
export type RequestMethod = NoBodyRequestMethod | BodyRequestMethod; export type NoBodyRequestMethod = 'GET' | 'DELETE' | 'HEAD' | 'OPTIONS' | 'JSONP'; export type BodyRequestMethod = 'POST' | 'PUT' | 'PATCH';