@bolttech/server-side-next
Version:
This library was generated with [Nx](https://nx.dev).
9 lines (8 loc) • 468 B
TypeScript
import { TemplateServiceInterface } from './template.service.interface';
import { Template, TemplateResponse } from './template.service.type';
declare class TemplateService implements TemplateServiceInterface {
getTemplate(vertical: string, template_key: string): Promise<Template>;
useTemplate<T, R>(vertical: string, template_key: string, payload: T): Promise<TemplateResponse<R>>;
}
export declare const templateService: TemplateService;
export {};