Skip to main content

CustomTypes

onChangeUpdateInputText

Type NameFunction TypeDescription
onChangeUpdateInputText(change: KeyboardEvent<HTMLDivElement>) => voidHandles text update events on input change.

onKeydownEvent

Type NameFunction TypeDescription
onKeydownEvent(change: KeyboardEvent<HTMLDivElement>) => voidHandles keydown events on an input element.

onKeyUpEvent

Type NameFunction TypeDescription
onKeyUpEvent(change: KeyboardEvent<HTMLDivElement>) => voidHandles keyup events on an input element.

ZeroArgVoidReturns

Type NameFunction TypeDescription
ZeroArgVoidReturns() => voidFunction with no arguments that returns nothing.

OneArgVoidReturns<T>

Type NameFunction TypeDescription
OneArgVoidReturns<T>(arg: T) => voidFunction with one argument that returns nothing.

TwoArgVoidReturns<T, S>

Type NameFunction TypeDescription
TwoArgVoidReturns<T, S>(argOne: T, argTwo: S) => voidFunction with two arguments that returns nothing.

OneOptionalArgVoidReturns<T>

Type NameFunction TypeDescription
## OneOptionalArgVoidReturns<T>(arg?: T) => voidFunction with an optional argument that returns nothing.

ZeroArgBooleanReturns

Type NameFunction TypeDescription
ZeroArgBooleanReturns() => booleanFunction with no arguments that returns a boolean.