UNPKG

@bitrix/cli

Version:
23 lines (19 loc) 252 B
import {Type} from 'main.core'; export class {{name}} { constructor(options = {name: '{{name}}'}) { this.name = options.name; } setName(name) { if (Type.isString(name)) { this.name = name; } } getName() { return this.name; } }