diff options
Diffstat (limited to 'shared/models/plugins/plugin-translation.model.ts')
-rw-r--r-- | shared/models/plugins/plugin-translation.model.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shared/models/plugins/plugin-translation.model.ts b/shared/models/plugins/plugin-translation.model.ts new file mode 100644 index 000000000..a2dd8e560 --- /dev/null +++ b/shared/models/plugins/plugin-translation.model.ts | |||
@@ -0,0 +1,5 @@ | |||
1 | export type PluginTranslation = { | ||
2 | [ npmName: string ]: { | ||
3 | [ key: string ]: string | ||
4 | } | ||
5 | } | ||