UNPKG

@sincerecloud/sc-ui

Version:

vue3 ui ant-design-vue sincerecloud sc-ui typescript

12 lines (11 loc) 496 B
import { CSSProperties, VNodeChild } from 'vue'; import { VueTypeValidableDef, VueTypesInterface } from 'vue-types'; import type { PropType } from 'vue'; export declare type VueNode = VNodeChild | JSX.Element; declare type PropTypes = VueTypesInterface & { readonly style: VueTypeValidableDef<CSSProperties>; readonly VNodeChild: VueTypeValidableDef<VueNode>; }; declare const PropTypes: PropTypes; export declare const definePropType: <T>(val: any) => PropType<T>; export { PropTypes };