UNPKG

dynamicsmobile

Version:

Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com

18 lines (17 loc) 600 B
type InputType = 'context' | 'config'; type OutputType = 'context' | 'config'; type InputDataType = 'int' | 'decimal' | 'boolean'; export type InputOptions = { type?: InputType; required?: boolean; isArray?: boolean; default?: any; dataType?: InputDataType; }; export type OutputOptions = { type?: OutputType; always?: boolean; }; export declare function input(options?: InputOptions): (targetClassPrototype: any, propertyName: string) => void; export declare function output(options?: OutputOptions): (targetClassPrototype: any, propertyName: string) => void; export {};