代码拉取完成,页面将自动刷新
declare module '*.css';
declare module '*.less';
declare module '*.png';
declare module '*.svg' {
export function ReactComponent(props: React.SVGProps<SVGSVGElement>): React.ReactElement;
const url: string;
export default url;
}
namespace NodeJS {
interface Global {
SysConfig: {
/**
* @description: 当前命令进程所在工作目录
*/
basePath: string;
/**
* @description: 脚手架包根目录
*/
pkgBasePath: string;
/**
* @description: 脚手架pkg
*/
pkg: any;
/**
* @description: 远程文件地址
*/
remoteAssetsHost: string;
/**
* @description: 文档地址
*/
docAddr: string;
/**
* @description: 仓库地址
*/
repoAddr: string;
};
UsrConfig: {
/**
* @description: 项目名称。zuoy生成的文件将默认使用此名称,除非在操作配置中单独指明名称。
*/
projectName: string;
/**
* @description: 设置本地语言,用于程序识别当前输入的语种
*/
localLanguage: string;
/**
* @description: Z函数配置
*/
Z: {
name: string; // 自定义z函数名称
};
/**
* @description: 输出的多语言文件,code是语言代码,file是输出文件相对于根目录的路径,
*/
languages: {
code: string;
file: string;
}[];
/**
* @description: 未启用翻译的其他语言默认填入的内容
*/
defaultContent: (value: string, targetCode: string) => string;
/**
* @description: 自定义key值
*/
formatKey: (value: string | number | boolean) => string;
/**
* @description: build配置
*/
build: {
/**
* @description: build时扫描的目录(相对于根目录)
*/
rootDir?: string;
include?: RegExp[]; // 需要包含的文件路径RegExp
exclude?: RegExp[]; // 需要排除的文件路径RegExp,比include优先级高
outExcel?: boolean; // 是否自动导出excel文件,采用export.excel的配置
cloud?: {
// 配置了cloud时,outExcel失效
namespaceUrl: string; // 知识库地址
slug?: string; // 文档唯一名称。未提供则使用projectName
accessToken: string; // 用于客户端 / API 访问你的私密数据,请注意保密,如有泄漏,请重置。
title?: string; // 文档标题。未提供则使用projectName
};
};
/**
* @description: export配置
*/
export: {
excel: {
saveDir: string; // excel 文件的生成目录(相对于项目根目录)
name: string; // 生成 excel 的文件名称,未提供则使用projectName
};
};
};
Log: {
info: (info: string, color?: string) => void;
success: (info: string) => void;
warn: (info: string) => void;
error: (
error:
| string
| {
title: string;
path?: string;
detail?: string;
position?: { line: number; column: number };
}
) => void;
};
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。