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.

ExplorerSync.d.ts 584B

1234567891011121314
  1. import { ExplorerBase } from './ExplorerBase';
  2. import { CosmiconfigResult, ExplorerOptionsSync } from './types';
  3. declare class ExplorerSync extends ExplorerBase<ExplorerOptionsSync> {
  4. constructor(options: ExplorerOptionsSync);
  5. searchSync(searchFrom?: string): CosmiconfigResult;
  6. private searchFromDirectorySync;
  7. private searchDirectorySync;
  8. private loadSearchPlaceSync;
  9. private loadFileContentSync;
  10. private createCosmiconfigResultSync;
  11. loadSync(filepath: string): CosmiconfigResult;
  12. }
  13. export { ExplorerSync };
  14. //# sourceMappingURL=ExplorerSync.d.ts.map