Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Step 23.32: Define bindings
  • Loading branch information
Kamil Kisiela authored and DAB0mB committed Dec 14, 2016
1 parent 87a865f commit cf59336
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions imports/ui/components/partyDetails/partyDetails.ts
@@ -1,7 +1,7 @@
import * as angular from 'angular';
import * as angularMeteor from 'angular-meteor';
import * as uiRouter from 'angular-ui-router';
import { Component } from '@angular/core';
import { Component, Input, Output } from '@angular/core';
import { MeteorComponent } from 'angular2-meteor';

import { Meteor } from 'meteor/meteor';
Expand All @@ -16,8 +16,8 @@ import { PartyMapNg1Module } from '../partyMap/partyMap';
selector: 'party-details'
})
export class PartyDetails extends MeteorComponent {
partyId: string;
party: Object = {};
@Input() partyId: string;
@Output() party: Object = {};
users: Object[];
isLoggedIn: boolean;

Expand Down

0 comments on commit cf59336

Please sign in to comment.