Type Alias: TipInfo
type TipInfo =
| string
| {
tooltip: AnyDuringMigration;
}
| (() => TipInfo | string);
Defined in: packages/blockly/core/tooltip.ts:21
A type which can define a tooltip. Either a string, an object containing a tooltip property, or a function which returns either a string, or another arbitrarily nested function which eventually unwinds to a string.