Counter.d.ts 178 B

123456
  1. /// <reference types="./types" />
  2. export declare class Counter {
  3. element: HTMLElement;
  4. constructor(vditor: IVditor);
  5. render(vditor: IVditor, mdText: string): void;
  6. }