UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

15 lines (14 loc) 1.21 kB
/** @deprecated Используйте ControllerBase */ export declare function action(target: object, propertyKey: string, descriptor: TypedPropertyDescriptor<any>): TypedPropertyDescriptor<any>; /** @deprecated Используйте ControllerBase */ export declare function apiAction(target: object, propertyKey: string, descriptor: TypedPropertyDescriptor<any>): TypedPropertyDescriptor<any>; /** @deprecated Используйте ControllerBase */ export declare function controllerAction(url: string): (target: object, propertyKey: string, descriptor: TypedPropertyDescriptor<any>) => TypedPropertyDescriptor<any>; /** @deprecated Используйте ControllerBase */ export declare function arg(name: string): (target: object, propertyKey: string, parameterIndex: number) => void; /** @deprecated Используйте ControllerBase */ export declare function postData(target: object, propertyKey: string, parameterIndex: number): void; /** @deprecated Используйте ControllerBase */ export declare let ServiceActionPostDataArgumentName: string; /** @deprecated Используйте ControllerBase */ export declare function controller(name: string): (target: object) => void;