@dslate/antd
Version:
一个Antd Design风格的富文本编辑器 - A Antd Design style rich editor based on Slate
8 lines (7 loc) • 468 B
TypeScript
import React, { PropsWithChildren } from 'react';
export declare const Popover: ({ content, position, children, trigger, visible, }: React.PropsWithChildren<{
content?: React.ReactNode;
position?: "top" | "topLeft" | "topRight" | "left" | "leftTop" | "leftBottom" | "right" | "rightTop" | "rightBottom" | "bottom" | "bottomLeft" | "bottomRight" | undefined;
trigger?: any;
visible?: boolean | undefined;
}>) => import("react/jsx-runtime").JSX.Element;