UNPKG

mdkjs

Version:

mdk is a framework for developing Datapacks for Minecraft. It uses the typescript language.

21 lines (20 loc) 694 B
/** * 命名空间只识别小写英文字母、数字、-、_和. * @param filename 文件名 */ export declare function isValidSpacename(filename: string): boolean; /** * 不能包含 < > ? : * | / \ * @param filename 文件名 */ export declare function isValidSystemFileChar(filename: string): boolean; /** * 命名时名称只识别小写英文字母、数字、-和_ / * @param filename 文件名 */ export declare function isValidPathName(filename: string): boolean; /** * 命名时名称只识别小写英文字母、数字、- _ / . 如:sys:foo/bar * @param filename 文件名 */ export declare function isValidDeclareName(filename: string): boolean;