@versea/tapable
v0.3.1
Published
versea 的的 tapable 事件库。
Downloads
2
Readme
@versea/tapable
versea 的的 tapable 事件库。
安装
npm install --save @versea/tapable
使用
import { AsyncSeriesHook, HookContext } from '@versea/tapable';
interface Context extends HookContext {
test: string;
}
const testAsyncSeriesHook = new AsyncSeriesHook<Context>();
testAsyncSeriesHook.tap('name', async () => {
return Promise.resolve();
});
void testAsyncSeriesHook.call({ test: 'test' });