@hopeio/utils
Version:
javascript utils
15 lines (14 loc) • 678 B
TypeScript
import { CSSProperties, VNodeChild } from 'vue';
import { VueTypesInterface, VueTypeValidableDef } from 'vue-types';
import { JSX } from 'vue/jsx-runtime';
export type VueNode = VNodeChild | JSX.Element;
type PropTypes = VueTypesInterface & {
readonly style: VueTypeValidableDef<CSSProperties>;
readonly VNodeChild: VueTypeValidableDef<VueNode>;
};
declare const newPropTypes: PropTypes;
export declare class propTypes extends newPropTypes {
static get style(): VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
static get VNodeChild(): VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
}
export {};