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

21 lines
243 B
JavaScript

var Operation = require ('./operation');
/**
* The equivalent of a SQL operation.
**/
module.exports = new Class
({
Extends: Operation
,Tag: 'sql-filter-item'
,Properties:
{
primary:
{
type: Boolean
}
}
,primary: true
});