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

21 lines
243 B
JavaScript
Raw Normal View History

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