@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
52 lines (51 loc) • 1.45 kB
TypeScript
export declare const getListWithWarnings: {
priority: number;
request: {
method: "GET" | "POST" | "DELETE" | "PUT" | "OPTIONS";
queryParameters?: object | undefined;
bodyPatterns?: Array<object> | undefined;
urlPathPattern: string;
};
response: {
status: number;
headers: {
"Content-Type": "application/json;charset=UTF-8";
};
jsonBody: object;
fixedDelayMilliseconds: number;
};
};
export declare const getListWithWarningsCount: {
priority: number;
request: {
method: "GET" | "POST" | "DELETE" | "PUT" | "OPTIONS";
queryParameters?: object | undefined;
bodyPatterns?: Array<object> | undefined;
urlPathPattern: string;
};
response: {
status: number;
headers: {
"Content-Type": "application/json;charset=UTF-8";
};
jsonBody: object;
fixedDelayMilliseconds: number;
};
};
export declare const mocks: {
priority: number;
request: {
method: "GET" | "POST" | "DELETE" | "PUT" | "OPTIONS";
queryParameters?: object | undefined;
bodyPatterns?: Array<object> | undefined;
urlPathPattern: string;
};
response: {
status: number;
headers: {
"Content-Type": "application/json;charset=UTF-8";
};
jsonBody: object;
fixedDelayMilliseconds: number;
};
}[];