Skip to content

Latest commit

 

History

History

Prop

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Prop

A helper to get object's prop.

Usage

import type {Prop} from 'flown'

/**
 * 'test'
 */
type A = Prop<{ a: 'test' }, 'a'>

/**
 * Error
 */
type B = Prop<{ a: 'test' }, 'b'>