interface DetailEvent<A, R> {
    action: A;
    data: null | CustomEventDataType<R>;
}

Type Parameters

  • A
  • R

Properties

Properties

action: A
data: null | CustomEventDataType<R>