mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
Fixing Set interface method from 'Add' to 'add'
This commit is contained in:
2
d3/d3.d.ts
vendored
2
d3/d3.d.ts
vendored
@@ -847,7 +847,7 @@ declare module D3 {
|
||||
|
||||
export interface Set{
|
||||
has(value: any): boolean;
|
||||
Add(value: any): any;
|
||||
add(value: any): any;
|
||||
remove(value: any): boolean;
|
||||
values(): Array<any>;
|
||||
forEach(func: (value: any) => void ): void;
|
||||
|
||||
Reference in New Issue
Block a user