UNPKG

@ux-aspects/ux-aspects

Version:

Open source user interface framework for building modern, responsive, mobile big data applications

8 lines (7 loc) 404 B
import { ConduitProperties } from './interfaces/conduit-properties'; /** Expose the property that conduits will be stored in */ export declare const CONDUITS = "_conduits"; type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void; /** Create the conduit property decorator */ export declare function Conduit(properties: ConduitProperties | Function): PropertyDecorator; export {};