5 lines
148 B
TypeScript
5 lines
148 B
TypeScript
|
|
export type Replacements = {
|
||
|
|
[key: string]: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type TranslateFunction = (template: string, replacements?: Replacements) => string;
|