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) 286 B
import { AttributeValue } from "./util"; import { NAryFunction } from "./NAryFunction"; export type LogicNumber = NAryFunction<number> | number; export type LogicBoolean = NAryFunction<boolean> | boolean; export type LogicAttributeValue = NAryFunction<AttributeValue> | AttributeValue;