initial
This commit is contained in:
20
ts/smartstatus.classes.http.ts
Normal file
20
ts/smartstatus.classes.http.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
export type TStatusGroup = 'clientError' | 'serverError'
|
||||
|
||||
export class HttpStatus {
|
||||
code: number
|
||||
text: string
|
||||
description: string
|
||||
constructor (optionsArg: {
|
||||
code: number,
|
||||
text: string,
|
||||
description: string
|
||||
}) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
export * from './smartstatus.classes.http.1xx'
|
||||
export * from './smartstatus.classes.http.2xx'
|
||||
export * from './smartstatus.classes.http.3xx'
|
||||
export * from './smartstatus.classes.http.4xx'
|
||||
export * from './smartstatus.classes.http.5xx'
|
||||
Reference in New Issue
Block a user