mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2025-05-04 20:39:53 +00:00
12 lines
416 B
TypeScript
12 lines
416 B
TypeScript
import { ISkeletonProcess } from '@autocrud/skeleton/interfaces/skeleton-process.interface';
|
|
|
|
export abstract class PartialBatchUpdateProcess implements ISkeletonProcess {
|
|
async initialization(): Promise<any> {}
|
|
async before(): Promise<any> {}
|
|
async begin(): Promise<any> {}
|
|
async process(): Promise<any> {}
|
|
async end(): Promise<any> {}
|
|
async after(): Promise<any> {}
|
|
async result(): Promise<any> {}
|
|
}
|