| 1234567891011121314151617 |
-
- export class Param
- {
- constructor(code,selectors)
- {
- // br-removecolumn
- this.code = code;
- // br-removecolumn-2
- this.codeFull='';
- // true
- this.codeHaveVars;
- // table
- this.selectors = selectors;
- // <table></table>,<table></table>...]
- this.targets = [];
- }
- }
|