UNPKG

@rnaga/wp-node

Version:

👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**

12 lines (9 loc) • 349 B
export type * from "./actions"; export type * from "./filters"; export type * from "./command"; import { Hooks as HooksCore } from "../../core/hooks/hooks"; import { Filters } from "./filters"; import { Actions } from "./actions"; export type Hooks<TFilters = Filters, TActions = Actions> = InstanceType< typeof HooksCore<TFilters, TActions> >;