import { BaseResponse } from 'jslib/cli/models/response/baseResponse'; export class TemplateResponse implements BaseResponse { object: string; template: any; constructor(template: any) { this.object = 'template'; this.template = template; } }