fix: mark abstractModel and abstractService abstract
This commit is contained in:
parent
2445f0eec8
commit
d36577c04e
2 changed files with 3 additions and 3 deletions
|
|
@ -40,7 +40,7 @@ function prepareParams(params: Record<string, unknown | unknown[]>) {
|
|||
return objectToSnakeCase(params)
|
||||
}
|
||||
|
||||
export default class AbstractService<Model extends IAbstract = IAbstract> {
|
||||
export default abstract class AbstractService<Model extends IAbstract = IAbstract> {
|
||||
|
||||
/////////////////////////////
|
||||
// Initial variable definitions
|
||||
|
|
|
|||
Reference in a new issue