Skip to content
View lebedev's full-sized avatar
😼
😼
  • Almaty, Kazakhstan

Block or report lebedev

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Flow assertions that an object has a... Flow assertions that an object has all properties from enum and no more, compare enums assertions.
    1
    // @flow
    2
    
                  
    3
    type enum = 'a' | 'b' | 'c';
    4
    type enumSame = 'a' | 'b' | 'c';
    5
    type enumSubtype = 'a' | 'b';