UNPKG

@aplus-frontend/ui

Version:

12 lines (11 loc) 691 B
import { ConvertValueOptions } from './interface'; import { VNode, RendererNode, RendererElement } from 'vue'; export declare const isNull: (value: any) => boolean; export declare const createMemoizeKey: (value: any, options?: any) => string; export declare const convertValue: (value: string | number | (() => VNode) | VNode | null | undefined, options?: ConvertValueOptions) => string | number | VNode< RendererNode, RendererElement, { [key: string]: any; }> | (() => VNode) | null | undefined; export declare const isVNodeOrFunction: (value: any) => boolean; export declare const renderValue: (value: any) => VNode< RendererNode, RendererElement, { [key: string]: any; }> | null;