Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 211 Bytes

Action.md

File metadata and controls

13 lines (11 loc) · 211 Bytes
/**
 * An action represents a hypermedia form submission or action.
 */
interface Action<T> {

  /**
   * Execute the action or submit the form.
   */
  submit(formData: T): Promise<State>;

}