mirror of
https://github.com/marko-js/marko.git
synced 2026-01-25 15:03:04 +00:00
15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
'use strict';
|
|
|
|
class Attribute {
|
|
constructor(name) {
|
|
this.name = name;
|
|
this.type = null;
|
|
this.required = false;
|
|
this.type = null;
|
|
this.allowExpressions = true;
|
|
this.setFlag = null;
|
|
this.pattern = null;
|
|
}
|
|
}
|
|
|
|
module.exports = Attribute; |