Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "Boolean/Or"

Index

Type aliases

Type aliases

Or

Or<B1, B2>: { 0: { 0: 0; 1: 1; }; 1: { 0: 1; 1: 1; }; }[B1][B2]

Logical || operator (behaves like the JS one)

Type parameters

returns

Boolean

example

import {B} from 'ts-toolbelt'

type test0 = B.Or<B.True, B.False>    // True
type test1 = B.Or<B.True, B.True>     // True
type test2 = B.Or<B.Boolean, B.False> // Boolean

Made with ❤️ by pirix-gh. Documentation generated by TypeDoc.