Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Explorer.d.ts 550B

1234567891011121314
  1. import { ExplorerBase } from './ExplorerBase';
  2. import { CosmiconfigResult, ExplorerOptions } from './types';
  3. declare class Explorer extends ExplorerBase<ExplorerOptions> {
  4. constructor(options: ExplorerOptions);
  5. search(searchFrom?: string): Promise<CosmiconfigResult>;
  6. private searchFromDirectory;
  7. private searchDirectory;
  8. private loadSearchPlace;
  9. private loadFileContent;
  10. private createCosmiconfigResult;
  11. load(filepath: string): Promise<CosmiconfigResult>;
  12. }
  13. export { Explorer };
  14. //# sourceMappingURL=Explorer.d.ts.map