import { ISkeletonProcess } from '@autocrud/skeleton/interfaces/skeleton-process.interface'; export abstract class PartialBatchUpdateProcess implements ISkeletonProcess { async initialization(): Promise {} async before(): Promise {} async begin(): Promise {} async process(): Promise {} async end(): Promise {} async after(): Promise {} async result(): Promise {} }