CustomTypes
onChangeUpdateInputText
| Type Name | Function Type | Description |
|---|---|---|
onChangeUpdateInputText | (change: KeyboardEvent<HTMLDivElement>) => void | Handles text update events on input change. |
onKeydownEvent
| Type Name | Function Type | Description |
|---|---|---|
onKeydownEvent | (change: KeyboardEvent<HTMLDivElement>) => void | Handles keydown events on an input element. |
onKeyUpEvent
| Type Name | Function Type | Description |
|---|---|---|
onKeyUpEvent | (change: KeyboardEvent<HTMLDivElement>) => void | Handles keyup events on an input element. |
ZeroArgVoidReturns
| Type Name | Function Type | Description |
|---|---|---|
ZeroArgVoidReturns | () => void | Function with no arguments that returns nothing. |
OneArgVoidReturns<T>
| Type Name | Function Type | Description |
|---|---|---|
OneArgVoidReturns<T> | (arg: T) => void | Function with one argument that returns nothing. |
TwoArgVoidReturns<T, S>
| Type Name | Function Type | Description |
|---|---|---|
TwoArgVoidReturns<T, S> | (argOne: T, argTwo: S) => void | Function with two arguments that returns nothing. |
OneOptionalArgVoidReturns<T>
| Type Name | Function Type | Description |
|---|---|---|
## OneOptionalArgVoidReturns<T> | (arg?: T) => void | Function with an optional argument that returns nothing. |
ZeroArgBooleanReturns
| Type Name | Function Type | Description |
|---|---|---|
ZeroArgBooleanReturns | () => boolean | Function with no arguments that returns a boolean. |