interface InputListState {
    listItems: (string | object)[];
    newItem?: string;
    options?: Element[];
}

Properties

listItems: (string | object)[]
newItem?: string
options?: Element[]