export interface ISkeletonProcess { initialization(): T; before(): T; begin(): T; process(): T; end(): T; after(): T; result(): R; }