import { HookFilterSync } from '@spine/hook'; export interface BuildOptionsHookParams { target: string; optimize?: boolean; development?: boolean; } export interface BuildOptionsHookFilterValue extends BuildOptionsHookParams { target: string; optimize?: boolean; development?: boolean; [key: string]: any; } export const buildOptionsHook = new HookFilterSync();