UNPKG

@bd-innovations/abstract-section

Version:

A bunch of abstract logic for the section

13 lines (12 loc) 547 B
/** * @deprecated * */ export declare abstract class AbstractNotifierService { protected constructor(); abstract openGetOneNotification(modelNamePrefix?: string): void; abstract openGetListNotification(modelNamePrefix?: string, amount?: number, totalAmount?: number): void; abstract openPostNotification(modelNamePrefix?: string): void; abstract openPutNotification(modelNamePrefix?: string): void; abstract openDeleteNotification(modelNamePrefix?: string): void; abstract openErrorNotification(error?: any): void; }