1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-24 04:03:15 +00:00
Files
cli/src/models/response/templateResponse.ts
Oscar Hinton 477066118e Add jslib as a "real" dependency (#321)
* Split jslib

* Bump jslib

* Bump jslib, replace alias with tsconfig-paths-webpack-plugin
2021-06-07 19:25:55 +02:00

12 lines
282 B
TypeScript

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