UNPKG

377 BTypeScriptView Raw
1import { BundlibPkgJson } from "./pkg";
2import { BundlibAPIOptions, BundlibRollupModuleOutputOptions, BundlibRollupOptions, Nullable } from "./types";
3declare function configsFromPkg(cwd: string, options?: Nullable<BundlibAPIOptions | false>, pkgJson?: BundlibPkgJson): Promise<Array<BundlibRollupOptions<BundlibRollupModuleOutputOptions>>>;
4export default configsFromPkg;