1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

refactor req/res models

This commit is contained in:
Kyle Spearrin
2018-05-15 12:18:47 -04:00
parent 1d3ed93bff
commit 07cc64c0b8
25 changed files with 363 additions and 229 deletions

View File

@@ -1,10 +1,11 @@
import { BaseResponse } from './baseResponse';
export class TemplateResponse extends BaseResponse {
export class TemplateResponse implements BaseResponse {
object: string;
template: any;
constructor(template: any) {
super('template');
this.object = 'template';
this.template = template;
}
}