UNPKG

hins

Version:

[![codecov](https://codecov.io/gh/l-zoy/hins/branch/main/graph/badge.svg)](https://codecov.io/gh/l-zoy/hins) [![GitHub license](https://img.shields.io/github/license/l-zoy/hins)](https://github.com/l-zoy/hins/blob/master/LICENSE) ![node-current](https://i

18 lines (17 loc) 474 B
import type { IConfig, IReadConfig, IWorkDir } from './types'; export default class Config { /** * @desc possible Config name */ possibleConfigName: IWorkDir[]; /** * @desc Service instance */ core: IReadConfig['core']; constructor(options: IReadConfig); getPluginConfig(userConfig: IConfig): IConfig; getPluginDefaultConfig(): {}; getConfigFile(): string | false; getUserConfig(): IConfig; watchConfig(): void; }