mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Included getInstance() and getInstanceIndex()
This commit is contained in:
parent
ee60c40a96
commit
95f5e49225
35
jsplumb/jquery.jsPlumb.d.ts
vendored
35
jsplumb/jquery.jsPlumb.d.ts
vendored
@ -19,23 +19,26 @@ interface jsPlumbInstance {
|
||||
addEndpoint(ep: string): any;
|
||||
removeClass(el: any, clazz: string): void;
|
||||
hasClass(el: any, clazz: string): void;
|
||||
draggable(el: string, options?: DragOptions): jsPlumbInstance;
|
||||
draggable(ids: string[], options?: DragOptions): jsPlumbInstance;
|
||||
connect(connection: ConnectParams, referenceParams?: ConnectParams): Connection;
|
||||
makeSource(el: string, options: SourceOptions): void;
|
||||
makeTarget(el: string, options: TargetOptions): void;
|
||||
repaintEverything(): void;
|
||||
detachEveryConnection(): void;
|
||||
draggable(el: string, options?: DragOptions): jsPlumbInstance;
|
||||
draggable(ids: string[], options?: DragOptions): jsPlumbInstance;
|
||||
connect(connection: ConnectParams, referenceParams?: ConnectParams): Connection;
|
||||
makeSource(el: string, options: SourceOptions): void;
|
||||
makeTarget(el: string, options: TargetOptions): void;
|
||||
repaintEverything(): void;
|
||||
detachEveryConnection(): void;
|
||||
detachAllConnections(el: string): void;
|
||||
removeAllEndpoints(el: string, recurse?: boolean): jsPlumbInstance;
|
||||
removeAllEndpoints(el: Element, recurse?: boolean): jsPlumbInstance;
|
||||
select(params: SelectParams): Connections;
|
||||
getConnections(options?: any, flat?: any): any[];
|
||||
deleteEndpoint(uuid: string, doNotRepaintAfterwards?: boolean): jsPlumbInstance;
|
||||
deleteEndpoint(endpoint: Endpoint, doNotRepaintAfterwards?: boolean): jsPlumbInstance;
|
||||
repaint(el: string): jsPlumbInstance;
|
||||
repaint(el: Element): jsPlumbInstance;
|
||||
|
||||
removeAllEndpoints(el: string, recurse?: boolean): jsPlumbInstance;
|
||||
removeAllEndpoints(el: Element, recurse?: boolean): jsPlumbInstance;
|
||||
select(params: SelectParams): Connections;
|
||||
getConnections(options?: any, flat?: any): any[];
|
||||
deleteEndpoint(uuid: string, doNotRepaintAfterwards?: boolean): jsPlumbInstance;
|
||||
deleteEndpoint(endpoint: Endpoint, doNotRepaintAfterwards?: boolean): jsPlumbInstance;
|
||||
repaint(el: string): jsPlumbInstance;
|
||||
repaint(el: Element): jsPlumbInstance;
|
||||
getInstance(): jsPlumbInstance;
|
||||
getInstance(defaults: Defaults): jsPlumbInstance;
|
||||
getInstanceIndex(): number;
|
||||
|
||||
SVG: string;
|
||||
CANVAS: string;
|
||||
VML: string;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user