hedera-web/js/sql/filter-item.js

18 lines
237 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
2022-05-26 06:08:31 +00:00
var Operation = require('./operation');
2016-09-26 09:28:47 +00:00
/**
* The equivalent of a SQL operation.
2022-05-26 06:08:31 +00:00
*/
2022-05-28 19:27:36 +00:00
module.exports = new Class({
2016-09-26 09:28:47 +00:00
Extends: Operation
,Tag: 'sql-filter-item'
2022-05-28 19:27:36 +00:00
,Properties: {
primary: {
2015-11-19 13:57:23 +00:00
type: Boolean
}
}
2015-11-19 13:57:23 +00:00
,primary: true
});