@oiij/naive-ui
Version:
Some Composable Functions And Components for Vue 3
21 lines (20 loc) • 1.02 kB
TypeScript
import { PresetInputProps } from "./index.js";
import * as vue18 from "vue";
//#region src/components/preset-input/PresetInput.vue.d.ts
declare const __VLS_export: <V>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
props: vue18.PublicProps & __VLS_PrettifyLocal<PresetInputProps<V> & {
"onUpdate:value"?: ((val?: V | undefined) => any) | undefined;
}> & (typeof globalThis extends {
__VLS_PROPS_FALLBACK: infer P;
} ? P : {});
expose: (exposed: {}) => void;
attrs: any;
slots: {};
emit: (e: "update:value", val?: V) => void;
}>) => vue18.VNode & {
__ctx?: Awaited<typeof __VLS_setup>;
};
declare const _default: typeof __VLS_export;
type __VLS_PrettifyLocal<T> = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {};
//#endregion
export { _default };