hins
Version:
[](https://codecov.io/gh/l-zoy/hins) [](https://github.com/l-zoy/hins/blob/master/LICENSE)  • 409 B
TypeScript
import { IAsyncHook } from './types';
export default class AsyncHook {
/**
* @desc subscribed hook object
*/
taps: IAsyncHook[];
/**
* @desc hook execution function after serialization
*/
funcs: IAsyncHook['fn'][];
tap(options: IAsyncHook[]): void;
tapCall(value: any): any;
insert(options: IAsyncHook): void;
create(): any;
callTapsSeries(): string;
}