@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
44 lines (43 loc) • 1.44 kB
TypeScript
import { components } from 'src/dpr/types/api';
export declare const successfulExecution: {
id: string;
name: string;
description: string;
sections: components["schemas"]["DashboardSectionDefinition"][];
filterFields: components["schemas"]["FieldDefinition"][];
};
export declare const failedExecution: {
id: string;
name: string;
description: string;
sections: components["schemas"]["DashboardSectionDefinition"][];
filterFields: components["schemas"]["FieldDefinition"][];
};
export declare const serverError: {
id: string;
name: string;
description: string;
sections: components["schemas"]["DashboardSectionDefinition"][];
filterFields: components["schemas"]["FieldDefinition"][];
};
export declare const expiredDashboard: {
id: string;
name: string;
description: string;
sections: components["schemas"]["DashboardSectionDefinition"][];
filterFields: components["schemas"]["FieldDefinition"][];
};
export declare const requestTimeout: {
id: string;
name: string;
description: string;
sections: components["schemas"]["DashboardSectionDefinition"][];
filterFields: components["schemas"]["FieldDefinition"][];
};
export declare const failedRequest: {
id: string;
name: string;
description: string;
sections: components["schemas"]["DashboardSectionDefinition"][];
filterFields: components["schemas"]["FieldDefinition"][];
};