Hyperlinkv0.8.0-beta.28

RunHyperlink

export interface RunHyperlinkWireSchemas<
  I extends Schema.Top = typeof Schema.Void,
  A extends Schema.Top = typeof Schema.Void,
  E extends Schema.Top = typeof Schema.Never,
> {
  /** Wire input schema; defaults to {@link Schema.Void} (unit gate). */
  readonly payload?: I;
  /** Wire success schema; defaults to {@link Schema.Void}. Omitted slots are not store-stamped. */
  readonly success?: A;
  /** Wire error schema; defaults to {@link Schema.Never}. Omitted slots are not store-stamped. */
  readonly error?: E;
}
Referenced by 2 symbols