index.d.ts 237 B

1234567
  1. /// <reference types="./types" />
  2. export declare class Outline {
  3. element: HTMLElement;
  4. constructor(outlineLabel: string);
  5. render(vditor: IVditor): string;
  6. toggle(vditor: IVditor, show?: boolean, focus?: boolean): void;
  7. }