Status

This interface defines a Status that will be used in a ConanFlow

export interface Status <
    STATUSES_FROM = any,
    KEY extends keyof STATUSES_FROM = any,
> {
    name: KEY,
    data?: STATUSES_FROM[KEY],
}

Property

Description

name

Type: KEY required

the name of the status

data

Type: STATUSES_FROM[KEY] optional

The status data

Last updated