UNPKG

378 BTypeScriptView Raw
1// Type definitions for boolbase 1.0
2// Project: https://github.com/fb55/boolbase
3// Definitions by: BedrockCoder <https://github.com/bedrockcoder>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6/** A function that always returns `true` */
7export function trueFunc(): true;
8
9/** A function that always returns `false` */
10export function falseFunc(): false;