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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user