diff --git a/app/src/plugin/index.ts b/app/src/plugin/index.ts index c8ae962e7..0b13e72fe 100644 --- a/app/src/plugin/index.ts +++ b/app/src/plugin/index.ts @@ -1,10 +1,17 @@ +import {App} from "../index"; + export class Plugin { + public i18n: IObject; - constructor() { - + constructor(options: { + app: App, + id: string, + i18n: IObject + }) { + this.i18n = options.i18n; } - public getData () { + public getData() { }