@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
19 lines (15 loc) • 338 B
JavaScript
export class DprClientClass {
constructor(element, loadingHelper) {
this.element = element
this.loadingHelper = loadingHelper
}
static getModuleName() {
throw new Error("Module name not set")
}
getElement() {
return this.element
}
initialise() {
throw new Error("Initialisation not configured")
}
}