mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2025-05-04 20:39:53 +00:00
11 lines
154 B
TypeScript
11 lines
154 B
TypeScript
export interface ISkeletonProcess<T, R> {
|
|
initialization(): T;
|
|
before(): T;
|
|
begin(): T;
|
|
process(): T;
|
|
end(): T;
|
|
after(): T;
|
|
|
|
result(): R;
|
|
}
|