@oiij/naive-ui
Version:
Some Composable Functions And Components for Vue 3
12 lines (11 loc) • 395 B
TypeScript
import { ClassStyle } from "../data-table-plus/index.js";
import { _default } from "./TooltipButton.vue.js";
import { ButtonProps, TooltipProps } from "naive-ui";
//#region src/components/tooltip-button/index.d.ts
type TooltipButtonProps = {
tooltip?: string;
tooltipProps?: TooltipProps & ClassStyle;
buttonProps?: ButtonProps & ClassStyle;
};
//#endregion
export { TooltipButtonProps };