@webpack-auto/types
v0.1.14
Published
Contains common types to work with Webpack Auto
Readme
Webpack Auto: Types
Public types for webpack auto features.
Usage
file custom.autofeature.js
import type { Middleware } from '@webpack-auto/types';
const customFeature: Middleware = (config) => {
// api access here
return config;
};
export default customFeature;