UNPKG

typescript-util

Version:

JS/TS 的简单工具

20 lines 434 B
/** * Assert * @author LL * @date 2022-01-22 上午 12:50 **/ export declare class Assert { /** * 断言 true * @param {boolean} status * @param {string} msg */ static isTrue(status: boolean, msg?: string): void; /** * 断言 false * @param {boolean} status * @param {string} msg */ static isFalse(status: boolean, msg?: string): void; } //# sourceMappingURL=Assert.d.ts.map