UNPKG

@mediarithmics/plugins-nodejs-sdk

Version:

This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate

8 lines (5 loc) 198 B
import { AdRendererBaseInstanceContext } from "./InstanceContextInterface"; export interface TemplatingEngine<Opt, In, Out> { init: (opts?: Opt) => void; compile: (template: In) => Out; }