Mercurial > hg > ng2-query-ismi
view src/app/query-step.ts @ 61:6adf95d9a190 webpack
fix missing resultInfo. add column template for WITNESS.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Mon, 24 Apr 2017 19:39:25 +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; } }