smartstatus/dist/smartstatus.classes.http.d.ts
2017-04-12 11:38:52 +02:00

17 lines
514 B
TypeScript

export declare type TStatusGroup = 'clientError' | 'serverError';
export declare 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';