mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
replaced type Coordinates by existing type Vector2d
This commit is contained in:
parent
b6687d54a9
commit
93e21434bc
11
konva.d.ts
vendored
11
konva.d.ts
vendored
@ -6,11 +6,6 @@ declare module Konva {
|
||||
var isDragReady: () => boolean;
|
||||
var DD: any;
|
||||
|
||||
interface Coordinates {
|
||||
x: number;
|
||||
y: number;
|
||||
}
|
||||
|
||||
export class Util {
|
||||
static getRandomColor(): string;
|
||||
static getRGB(color: string): string;
|
||||
@ -90,7 +85,7 @@ declare module Konva {
|
||||
offsetY?: number;
|
||||
draggable?: boolean;
|
||||
dragDistance?: number;
|
||||
dragBoundFunc?: (pos: Coordinates) => Coordinates;
|
||||
dragBoundFunc?: (pos: Vector2d) => Vector2d;
|
||||
}
|
||||
|
||||
interface SizeConfig {
|
||||
@ -129,8 +124,8 @@ declare module Konva {
|
||||
clone(attrs?: NodeConfig): Node;
|
||||
destroy(): void;
|
||||
|
||||
dragBoundFunc(): (pos: Coordinates) => Coordinates;
|
||||
dragBoundFunc(dragBoundFunc: (pos: Coordinates) => Coordinates): Node;
|
||||
dragBoundFunc(): (pos: Vector2d) => Vector2d;
|
||||
dragBoundFunc(dragBoundFunc: (pos: Vector2d) => Vector2d): Node;
|
||||
draggable(): boolean;
|
||||
draggable(draggable: boolean): Node;
|
||||
draw(): Node;
|
||||
|
Loading…
Reference in New Issue
Block a user