@textbus/xnote
Version:
A high-performance rich text editor that supports multiplayer online collaboration.
12 lines (11 loc) • 489 B
TypeScript
import { Props } from '@viewfly/core';
import { Slot } from '@textbus/core';
import { HTMLAttributes } from '@viewfly/platform-browser';
import { DropdownProps } from '../../components/dropdown/dropdown';
export interface AttrToolProps extends Props {
abreast?: DropdownProps['abreast'];
style?: HTMLAttributes<HTMLElement>['style'];
slot?: Slot | null;
applyBefore?(): void;
}
export declare function AttrTool(props: AttrToolProps): () => import("@viewfly/core").JSXNode;