From 93cdf199a536ef8032eaee9d6161c4ff653576ac Mon Sep 17 00:00:00 2001 From: Chris Moran Date: Tue, 7 Mar 2017 11:15:52 -0500 Subject: [PATCH] Add namespace prefix to LinkAttributes --- jointjs/index.d.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/jointjs/index.d.ts b/jointjs/index.d.ts index 8ecb05f3ba..e8c9e8b53e 100644 --- a/jointjs/index.d.ts +++ b/jointjs/index.d.ts @@ -601,7 +601,7 @@ declare namespace joint { constructor(attributes?: ModelAttributes, options?: Object); } class Link extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } } @@ -643,7 +643,7 @@ declare namespace joint { constructor(attributes?: GenericAttributes, options?: Object); } class Line extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); cardinality(value: string | number): void; } } @@ -659,7 +659,7 @@ declare namespace joint { constructor(attributes?: GenericAttributes, options?: Object); } class Arrow extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } } @@ -751,7 +751,7 @@ declare namespace joint { constructor(attributes?: GenericAttributes, options?: Object); } class Arrow extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } } @@ -766,7 +766,7 @@ declare namespace joint { constructor(attributes?: GenericAttributes, options?: Object); } class Link extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } } @@ -796,19 +796,19 @@ declare namespace joint { constructor(attributes?: ClassAttributes, options?: Object); } class Generalization extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } class Implementation extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } class Aggregation extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } class Composition extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } class Association extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } interface StateAttributes extends GenericAttributes { events?: string[]; @@ -826,7 +826,7 @@ declare namespace joint { constructor(attributes?: GenericAttributes, options?: Object); } class Transition extends dia.Link { - constructor(attributes?: LinkAttributes, options?: Object); + constructor(attributes?: dia.LinkAttributes, options?: Object); } } }