UNPKG

typescript-util

Version:

JS/TS 的简单工具

61 lines 1.11 kB
/** * StringConstant * @author LL * @date 2022-01-10 下午 10:41 **/ export declare class StringConstant { /** * 空字符串常量 * @type {string} */ static readonly EMPTY = ""; /** * 问号 ❓ * @type {string} */ static readonly ASK = "?"; /** * 等于号 * @type {string} */ static readonly EQUAL = "="; /** * 路径分隔符 * @type {string} */ static readonly PATH_INTEGRAL = "/"; /** * 点 */ static readonly DO = "."; /** * 逗号 * @type {string} */ static readonly COMMA = ","; /** * 空 * @type {string} */ static readonly NULL = "null"; /** * 未定义 * @type {string} */ static readonly UNDEFINED = "undefined"; /** * HTTP 协议头 * @type {string} */ static readonly HTTP = "http://"; /** * HTTPS 协议头 * @type {string} */ static readonly HTTPS = "https://"; /** * @ */ static readonly AT = "@"; } //# sourceMappingURL=StringConstant.d.ts.map