UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

8 lines (7 loc) 237 B
/** * An unary function is a function which takes only one argument and may return a value */ export interface IUnaryFunction<GIn, GOut> { (value: GIn): GOut; } export declare type IGenericUnaryFunction = IUnaryFunction<any, any>;