Mercurial > hg > ng2-query-ismi
view src/app/query-step.ts @ 57:d7c947909ab8 ng2-table
renamed query-app.module to app.module. loading query from url fragment works now.
author | casties |
---|---|
date | Wed, 29 Mar 2017 17:16:10 +0200 |
parents | b65a031c4967 |
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; } }