@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
39 lines (38 loc) • 1.4 kB
TypeScript
export declare const checkA11y: () => void;
export declare const checkSelectedFilterValues: ({ length, buttonValues, }: {
length: number;
buttonValues: {
key: string;
value: string | RegExp;
}[];
}) => void;
export declare const startReportRequest: ({ name, description }: {
name: string;
description: string;
}) => void;
export declare const requestReportByNameAndDescription: ({ name, description }: {
name: string;
description: string;
}) => void;
export declare const requestReport: ({ name, description, path, }: {
name: string;
description: string;
path: string;
}) => Promise<void>;
export declare const enableDownload: () => void;
export declare const executeReportStubs: (resetRedis?: boolean) => void;
export declare const executeDashboardStubs: () => void;
export declare const stubDefinitionsTasks: () => void;
export declare const stubBaseTasks: (resetRedis?: boolean) => void;
export declare const stubBookmarks: () => void;
export declare const getMyReportRow: ({ name }: {
name: string | RegExp;
}) => Cypress.Chainable<JQuery<HTMLElement>>;
export declare const getMyReportRowCell: ({ name, cell }: {
name: string | RegExp;
cell: string;
}) => Cypress.Chainable<JQuery<HTMLElement>>;
export declare const expectMyReportRowCountInTab: ({ tabName, count }: {
tabName: string | RegExp;
count: number;
}) => void;