@salesforce/plugin-info
Version:
Plugin for accessing cli info from the command line
19 lines (18 loc) • 512 B
TypeScript
import { Interfaces } from '@oclif/core';
export type PjsonWithInfo = {
oclif: Interfaces.PJSON['oclif'] & {
info: InfoConfig;
};
} & Interfaces.PJSON;
export type InfoConfig = {
releasenotes: {
distTagUrl: string;
releaseNotesPath: string;
releaseNotesFilename: string;
};
};
export declare const getInfoConfig: (path: string) => Promise<InfoConfig>;
declare const _default: {
getInfoConfig: (path: string) => Promise<InfoConfig>;
};
export default _default;