Browse Source

Small change

pull/4264/head
Alex Ritter 4 years ago
parent
commit
d841e31281
  1. 2
      src/abstract/Module.ts

2
src/abstract/Module.ts

@ -1,6 +1,6 @@
import EditorModel from "../editor/model/Editor";
export interface IModule<TConfig extends any> extends IBaseModule<TConfig> {
export interface IModule<TConfig extends any = any> extends IBaseModule<TConfig> {
init(cfg: any): void;
destroy(): void;
postLoad(key: any): any;

Loading…
Cancel
Save