Mercurial > hg > ng2-query-ismi
view app/query-step.ts @ 26:991bf349bb04
re-display table more often.
author | casties |
---|---|
date | Wed, 27 Jan 2016 13:30:38 +0100 |
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; } }