/** * 确保一个值为真值, 若不符合则断言失败 * 相较于使用非空断言!,可以更早的断言失败 */ export declare const truthy: (v: false | T | null | undefined) => T;