Skip to content

TS types

A very simple helper types for typescript.

Func

type Func = (...args: any[]) => any;

UntypedObject

type UntypedObject = Record<string, any>;