: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
this.removeAction = build_module_createRemoveHook(this, 'actions');
this.removeFilter = build_module_createRemoveHook(this, 'filters');
this.hasAction = build_module_createHasHook(this, 'actions');
this.hasFilter = build_module_createHasHook(this, 'filters');
this.removeAllActions = build_module_createRemoveHook(this, 'actions', true);
this.removeAllFilters = build_module_createRemoveHook(this, 'filters', true);
this.doAction = build_module_createRunHook(this, 'actions');
this.applyFilters = build_module_createRunHook(this, 'filters', true);
this.currentAction = build_module_createCurrentHook(this, 'actions');
this.currentFilter = build_module_createCurrentHook(this, 'filters');
this.doingAction = build_module_createDoingHook(this, 'actions');
this.doingFilter = build_module_createDoingHook(this, 'filters');
this.didAction = build_module_createDidHook(this, 'actions');
this.didFilter = build_module_createDidHook(this, 'filters');
/** @typedef {_Hooks} Hooks */
* Returns an instance of the hooks object.
* @return {Hooks} A Hooks instance.
/* harmony default export */ const build_module_createHooks = (createHooks);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/index.js
/** @typedef {(...args: any[])=>any} Callback */
* @property {Callback} callback The callback
* @property {string} namespace The namespace
* @property {number} priority The namespace
* @property {Handler[]} handlers Array of handlers
* @property {number} runs Run counter
* @property {string} name Hook name
* @property {number} currentIndex The index
* @typedef {Record<string, Hook> & {__current: Current[]}} Store
* @typedef {'actions' | 'filters'} StoreKey
* @typedef {import('./createHooks').Hooks} Hooks
const defaultHooks = build_module_createHooks();
(window.wp = window.wp || {}).hooks = __webpack_exports__;