Skip to content

Commit b8bf3cf

Browse files
author
JF
committed
filters : working state
1 parent 0c999c9 commit b8bf3cf

File tree

2 files changed

+251
-186
lines changed

2 files changed

+251
-186
lines changed

src/Filter.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// @flow
2+
3+
/**
4+
* @property {string} name - The name of this field
5+
*/
6+
export default class Filter {
7+
property: string;
8+
filter: string;
9+
10+
/**
11+
* @param {string} property
12+
* @param {string} filter
13+
*/
14+
constructor(property: string, filter: string) {
15+
this.property = property;
16+
this.filter = filter;
17+
}
18+
}

0 commit comments

Comments
 (0)