18 lines
714 B
Plaintext
18 lines
714 B
Plaintext
import { VNodeTypes } from "vue";
|
|
import type { PropType } from "vue";
|
|
export declare type RenderFunc = (props: Record<string, unknown>) => VNodeTypes;
|
|
declare const _default: import("vue").DefineComponent<{
|
|
renderFunc: {
|
|
type: PropType<RenderFunc>;
|
|
default: null;
|
|
};
|
|
}, () => VNodeTypes | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
renderFunc: {
|
|
type: PropType<RenderFunc>;
|
|
default: null;
|
|
};
|
|
}>>, {
|
|
renderFunc: RenderFunc;
|
|
}>;
|
|
export default _default;
|