Mercurial > hg > ng2-query-ismi
view app/query-step.ts @ 44:3779464b830e ng2-rc1
update to angular2-rc1. mostly working ;-(
Starting 'ng2-rc1' branch
author | casties |
---|---|
date | Tue, 14 Jun 2016 19:58:53 +0200 |
parents | 34cd764e234b |
children |
line wrap: on
line source
import {QueryMode} from './query-mode'; export class QueryStep { public mode: QueryMode; public params: any; public resultInfo: string; constructor (mode: QueryMode, params: any) { this.mode = mode; this.params = params; } }