2016-05-03 01:09:54 -04:00
|
|
|
/* tslint:disable:no-unused-variable */
|
2016-04-05 02:27:10 -04:00
|
|
|
// #docplaster
|
2016-05-03 08:06:32 -04:00
|
|
|
import { Component, ViewEncapsulation } from '@angular/core';
|
2016-04-05 02:27:10 -04:00
|
|
|
|
|
|
|
// #docregion
|
|
|
|
@Component({
|
2016-05-03 01:09:54 -04:00
|
|
|
moduleId: module.id,
|
2016-04-05 02:27:10 -04:00
|
|
|
selector: 'quest-summary',
|
|
|
|
// #docregion urls
|
|
|
|
templateUrl: 'quest-summary.component.html',
|
|
|
|
styleUrls: ['quest-summary.component.css']
|
2016-05-03 01:09:54 -04:00
|
|
|
// #enddocregion urls
|
2016-05-10 03:51:23 -04:00
|
|
|
})
|
|
|
|
export class QuestSummaryComponent { }
|
2016-04-05 02:27:10 -04:00
|
|
|
// #enddocregion
|
|
|
|
/*
|
|
|
|
// #docregion encapsulation.native
|
|
|
|
// warning: few browsers support shadow DOM encapsulation at this time
|
2016-05-03 01:09:54 -04:00
|
|
|
encapsulation: ViewEncapsulation.Native
|
2016-04-05 02:27:10 -04:00
|
|
|
// #enddocregion encapsulation.native
|
|
|
|
*/
|