@v4fire/client
Version:
V4Fire client core library
19 lines (14 loc) • 488 B
text/typescript
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
import type { VNode, RenderObject, RenderContext as ComponentRenderContext } from 'core/component';
export type RenderFn = (params?: Dictionary) => VNode;
export type RenderContext =
ComponentRenderContext |
[Dictionary?] |
[Dictionary?, ComponentRenderContext?];
export type RenderPath = CanUndef<RenderObject> | string;