UNPKG

@bolttech/server-side-next

Version:

This library was generated with [Nx](https://nx.dev).

6 lines (5 loc) 302 B
import { Template, TemplateResponse } from './template.service.type'; export interface TemplateServiceInterface { getTemplate(vertical: string, template_key: string): Promise<Template>; useTemplate<T, R>(vertical: string, template_key: string, payload: T): Promise<TemplateResponse<R>>; }