mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 14:13:07 +00:00
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;
|
||
|
}
|