/** * This shows that it is possible to implement control flow using * a function (`if`) and only evaluating one argument or the other * depending on the condition (which evaluates to truthy or falsey) */ export declare function basicControlFlow(): void; /** * We can also use operators to perform control flow; here we create the * OR operator (`||`), which only evaluates the argument on the right if * the argument on the left was falsey. */ export declare function shortCircuiting(): void;