mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-11-29 18:28:09 +08:00
dc3e0aceb1
* fix: 优化类型提示 * fix: 添加 enums 接口类型声明 * feat: 配置插件api提示 Co-authored-by: wanchun <445436867@qq.com>
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
import type { Config } from 'windicss/types/interfaces';
|
|
|
|
declare module '@fesjs/fes' {
|
|
interface PluginBuildConfig {
|
|
windicss?:
|
|
| {
|
|
config: Config;
|
|
}
|
|
| false;
|
|
}
|
|
}
|