UNPKG

uni-echarts

Version:

🪀 适用于uni-app的Apache ECharts组件(仅支持Vue 3)

11 lines (8 loc) 289 B
import type { MaybeRefOrGetter, StyleValue } from "vue"; export type OptionalValue<T> = T | undefined; export type NullableValue<T> = T | null; export interface AllowedComponentProps { class?: any; style?: StyleValue; } export type Injection<T> = MaybeRefOrGetter<NullableValue<T>>;