minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / lib / requirePkg.d.ts
1 interface Options {
2     silent: boolean;
3     ignoreBundled: boolean;
4 }
5 /**
6  * Require package explicitly installed relative to given path.
7  * Fallback to bundled one if no package was found bottom up.
8  * @param {string} fspath file system path starting point to resolve package
9  * @param {string} pkgName package's name to require
10  * @returns module
11  */
12 declare function requireLocalPkg(fspath: string, pkgName: string, options?: Options): any;
13 export { requireLocalPkg };