mirror of
https://github.com/bitwarden/cli
synced 2025-12-24 04:03:15 +00:00
* Split jslib * Bump jslib * Bump jslib, replace alias with tsconfig-paths-webpack-plugin
12 lines
282 B
TypeScript
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;
|
|
}
|
|
}
|