@alauda/doom
Version:
Doctor Doom making docs.
25 lines (24 loc) • 536 B
JavaScript
const terms = {
company: {
en: 'Alauda',
zh: '灵雀云',
description: '公司品牌',
},
product: {
en: 'Alauda Container Platform',
zh: '灵雀云容器平台',
description: '产品品牌',
},
productShort: {
en: 'ACP',
description: '产品品牌简称',
},
};
export const namedTerms = terms;
export const namedTermItems = Object.keys(terms).map((name_) => {
const name = name_;
return {
name,
...terms[name],
};
});