mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-18 21:27:51 +00:00
947f91d570
Change-type: minor Signed-off-by: Cameron Diver <cameron@resin.io>
14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
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;
|
|
}
|