adr-cli
Version:
Architecture Decision Records (ADR) command cli
22 lines • 830 B
JavaScript
export class Enums {
statusColor = {
proposed: '$\\color{DodgerBlue}{proposed}$',
acceptance: '$\\color{MediumSeaGreen}{acceptance}$',
rejection: '$\\color{Tomato}{rejection}$',
deprecation: '$\\color{Orange}{deprecation}$',
superseding: '$\\color{Violet}{superseding}$',
};
markdownEngine = {
github: 'github',
gitlab: 'gitlab',
};
statusColorGitlab = {
proposed: '$\\textcolor{DodgerBlue}{\\text{proposed}}$',
acceptance: '$\\textcolor{MediumSeaGreen}{\\text{acceptance}}$',
rejection: '$\\textcolor{Tomato}{\\text{rejection}}$',
deprecation: '$\\textcolor{Orange}{\\text{deprecation}}$',
superseding: '$\\textcolor{Violet}{\\text{superseding}}$',
};
}
export default Enums;
//# sourceMappingURL=enums.js.map