source: node_modules/ts-toolbelt/out/Any/If.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 139 bytes
Line 
1import { Boolean } from '../Boolean/_Internal';
2export declare type If<B extends Boolean, Then, Else = never> = B extends 1 ? Then : Else;
Note: See TracBrowser for help on using the repository browser.