UNPKG

ng-spec-shot-reviewer

Version:

combined server of spec shot reviewer backend and optionally multiple static websites (e.g. compiled angular apps)

15 lines 479 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.specShotFileTypes = ['actual', 'diff', 'baseline']; class SpecShot { constructor(id, title = decodeURIComponent(id).replace(/[-_/]/g, ' ')) { this.id = id; this.title = title; this.actual = false; this.diff = false; this.baseline = false; this.approved = false; } } exports.SpecShot = SpecShot; //# sourceMappingURL=spec-shot.model.js.map