Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
14 lines
584 B
Plaintext
14 lines
584 B
Plaintext
import { ExplorerBase } from './ExplorerBase';
|
|
import { CosmiconfigResult, ExplorerOptionsSync } from './types';
|
|
declare class ExplorerSync extends ExplorerBase<ExplorerOptionsSync> {
|
|
constructor(options: ExplorerOptionsSync);
|
|
searchSync(searchFrom?: string): CosmiconfigResult;
|
|
private searchFromDirectorySync;
|
|
private searchDirectorySync;
|
|
private loadSearchPlaceSync;
|
|
private loadFileContentSync;
|
|
private createCosmiconfigResultSync;
|
|
loadSync(filepath: string): CosmiconfigResult;
|
|
}
|
|
export { ExplorerSync };
|
|
//# sourceMappingURL=ExplorerSync.d.ts.map |