import ChainWebpackConfig from "webpack-chain"; export type ChainWebpack = (config: ChainWebpackConfig, isServer: boolean) => void; export type Hook = (...arg: U) => R; export type AsyncHook = Hook< U, Promise >; export type PluginObject = Record;