balena-cli/typings/dockerfile-template.d.ts

14 lines
294 B
TypeScript
Raw Normal View History

declare module 'dockerfile-template' {
/**
* Variables which define what will be replaced, and what they will be replaced with.
*/
export interface TemplateVariables {
[key: string]: string;
}
export function process(
content: string,
variables: TemplateVariables,
): string;
}