import { IComment, Niwango } from "./@types/types"; import { IRenderer } from "@xpadev-net/niconicomments"; declare class NiconicommentsPluginNiwango { niwango: Niwango; constructor(targetCanvas: IRenderer, formattedComments: IComment[]); draw(vpos: number): void; addComments(formattedComments: IComment[]): void; } declare const wrapper: (_niwango: typeof Niwango) => typeof NiconicommentsPluginNiwango; export default wrapper;