mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +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; |