diff options
| author | bob <bcz@cs.brown.edu> | 2019-05-14 18:59:32 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-05-14 18:59:32 -0400 |
| commit | 281bfa589bd1ca66823003ca91cc11ce895fe5e2 (patch) | |
| tree | 9380004d6bd4b7f8c6dbd497b9100b4142b869e4 /src/client/northstar/model/idea | |
| parent | 39e0f933fc446e70ae14006f8d9952822d798fe3 (diff) | |
fixes for northstar
Diffstat (limited to 'src/client/northstar/model/idea')
| -rw-r--r-- | src/client/northstar/model/idea/idea.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/northstar/model/idea/idea.ts b/src/client/northstar/model/idea/idea.ts index 9d9d60678..c73a822c7 100644 --- a/src/client/northstar/model/idea/idea.ts +++ b/src/client/northstar/model/idea/idea.ts @@ -22,6 +22,9 @@ export abstract class AggregateParameters implements IAggregateParameters { protected _discriminator: string; + public Equals(other: Object): boolean { + return this == other; + } constructor(data?: IAggregateParameters) { if (data) { for (var property in data) { @@ -204,6 +207,9 @@ export interface IAverageAggregateParameters extends ISingleDimensionAggregatePa export abstract class AttributeParameters implements IAttributeParameters { visualizationHints?: VisualizationHint[] | undefined; rawName?: string | undefined; + public Equals(other: Object): boolean { + return this == other; + } protected _discriminator: string; |
