UNPKG

292 BTypeScriptView Raw
1import { DecoratorFunction } from '../models';
2export declare const decorateAction: (_decorators: DecoratorFunction[]) => () => void;
3export declare const decorate: (_decorators: DecoratorFunction[]) => () => {
4 action: () => void;
5 actions: () => void;
6 withActions: () => void;
7};