Skip to content

Commit

Permalink
Varargs from PR konsoletyper#313
Browse files Browse the repository at this point in the history
  • Loading branch information
Ihromant committed Nov 23, 2023
1 parent 86efdb0 commit 8c2d52f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@ public interface DOMTokenList extends JSObject {

void add(String token);

void add(String token1, String token2);

void add(String... tokens);

void remove(String token);

void remove(String token1, String token2);

void remove(String... tokens);

boolean toggle(String token);
}

0 comments on commit 8c2d52f

Please sign in to comment.