Vanessa 2023-05-06 11:29:46 +08:00
parent 6ae7a55e5e
commit 2ebc265996

View file

@ -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() {
}