-
-
Notifications
You must be signed in to change notification settings - Fork 32
Action
Evert Pot edited this page Jul 7, 2020
·
1 revision
/**
* An action represents a hypermedia form submission or action.
*/
interface Action<T> {
/**
* Execute the action or submit the form.
*/
submit(formData: T): Promise<State>;
}
Want to submit changes to the Wiki? Submit a PR here