Interface: TileRenderers
Makaio Framework / contracts/extension / TileRenderers
Interface: TileRenderers
Section titled “Interface: TileRenderers”Defined in: ../../../packages/contracts/src/extension/contributions/tile-types.ts:38
Platform renderers for a tile.
SEAM: Currently supports React; additional platforms can be added as optional keys without breaking existing declarations.
Indexable
Section titled “Indexable”[
platform:string]: (() =>Promise<{default:ComponentType<TileProps>; }>) |undefined
SEAM: Future platform renderers (e.g. reactNative, electron).
Additional platforms can be added here as optional keys.
Properties
Section titled “Properties”react: () =>
Promise<{default:ComponentType<TileProps>; }>
Defined in: ../../../packages/contracts/src/extension/contributions/tile-types.ts:45
React renderer for the web UI.
Lazy-loaded component module with a default export that accepts TileProps.
Returns
Section titled “Returns”Promise<{ default: ComponentType<TileProps>; }>