Skip to content

Commit

Permalink
auto generate
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 19, 2023
1 parent 6b04c0b commit 4f86500
Show file tree
Hide file tree
Showing 268 changed files with 42,010 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/.idea
/node_modules
/dist
/.DS_Store
/docs/type
/as
/coverage
*.iml
Expand Down
26 changes: 26 additions & 0 deletions dist/bundle.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
interface Comment {
message: string;
vpos: number;
isYourPost: boolean;
mail: string;
fromButton: boolean;
isPremium: boolean;
color: number;
size: number;
no: number;
_vpos: number;
_owner: boolean;
}

declare class Niwango {
private readonly render;
static default: typeof Niwango;
private lastVpos;
constructor(targetElement: HTMLCanvasElement | HTMLDivElement, comments: Comment[]);
private execute;
draw(vpos: number, clear?: boolean): boolean;
private _draw;
addComments(...newComments: Comment[]): void;
}

export { Niwango as default };
Loading

0 comments on commit 4f86500

Please sign in to comment.