@bd-innovations/abstract-section
Version:
A bunch of abstract logic for the section
25 lines (24 loc) • 506 B
TypeScript
/**
* @deprecated
* */
export interface AbstractServiceConfig {
apiPrefix: string;
apiPath: {
getOne: string;
getAll: string;
getPaginated: string;
post: string;
put: string;
delete: string;
};
/**
* @deprecated is not used since we created AbstractNotifierService with its logic
*/
successMessagePath?: {
get: string;
post: string;
put: string;
delete: string;
};
modelName: string;
}