Skip to content

Latest commit

 

History

History

Arguments

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Arguments

A helper to get function Arguments Type as a tuple.

Usage

import type {Arguments} from 'flown'

declare function someFunction(string, number, boolean): void

type Args = Arguments<typeof someFunction> // [string, number, boolean]