UNPKG

pricing4react

Version:

A library of components that ease the integration of feature toggling driven by pricing plans into your React application's UI.

6 lines (5 loc) 174 B
import { ResultValue } from "./ResultValue"; export interface NAryFunction<T> { eval: () => Promise<ResultValue<T>>; equals: (other: NAryFunction<any>) => boolean; }