react-antd-admin-panel
Version:
Easy prototyping admin panel using React and Antd
20 lines (19 loc) • 529 B
TypeScript
import { Dictionary } from "../utils/Dictionary";
import Value from "./Value";
import Post from "./Post";
import Action from "./Action";
export default class Formula {
_values: Dictionary<Value>;
_hidden: Value[];
constructor(post: Post);
value(model: any, value: any): void;
_action: any;
action(action: Action): this;
_post: Post;
post(post: Post): this;
submit(args?: any, action?: Action): void;
onComplete(): void;
onError(): void;
params(): any;
valuesOnReset(): void;
}