source: node_modules/ts-toolbelt/out/Any/_Internal.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: 484 bytes
RevLine 
[d24f17c]1/**
2 * Describes the match strategy when matching types
3 * * `default` : `extends->`
4 * * `contains->` : X contains Y ([[Contains]]<X, Y>)
5 * * `extends->` : X extends Y ([[Extends]]<X, Y>)
6 * * `<-contains` : Y contains X ([[Contains]]<Y, X>)
7 * * `<-extends` : Y extends X ([[Extends]]<Y, X>)
8 * * `equals` : X equals Y (([[Equals]]<X, Y>))
9 */
10export declare type Match = 'default' | 'contains->' | 'extends->' | '<-contains' | '<-extends' | 'equals';
Note: See TracBrowser for help on using the repository browser.