hins
Version:
[](https://codecov.io/gh/l-zoy/hins) [](https://github.com/l-zoy/hins/blob/master/LICENSE)  • 474 B
TypeScript
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;
}