@openscript/unplugin-favicons
Version:
Generate favicons for your project with caching for blazing fast rebuilds.
27 lines • 737 B
TypeScript
type StringOrUndefined = string | undefined;
export default class Oracle {
private packageJson;
constructor(startingPath?: string);
/**
* Tries to guess the name from package.json
*/
guessAppName(): StringOrUndefined;
/**
* Tries to guess the description from package.json
*/
guessDescription(): StringOrUndefined;
/**
* Tries to guess the developer {name, email, url} from package.json
*/
guessDeveloper(): {
email?: StringOrUndefined;
name?: StringOrUndefined;
url?: StringOrUndefined;
};
/**
* Tries to guess the version from package.json
*/
guessVersion(): StringOrUndefined;
}
export {};
//# sourceMappingURL=oracle.d.ts.map