@univerjs-pro/collaboration 0.2.10 → 0.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/types/controllers/config.schema.d.ts +5 -0
- package/lib/types/plugin.d.ts +5 -5
- package/lib/umd/index.js +1 -1
- package/package.json +22 -22
package/lib/types/plugin.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Injector, Plugin } from '@univerjs/core';
|
|
2
|
-
|
|
3
|
-
}
|
|
1
|
+
import { IConfigService, Injector, Plugin } from '@univerjs/core';
|
|
2
|
+
import { IUniverCollaborationConfig } from './controllers/config.schema';
|
|
4
3
|
export declare class UniverCollaborationPlugin extends Plugin {
|
|
5
|
-
private _config;
|
|
4
|
+
private readonly _config;
|
|
6
5
|
protected _injector: Injector;
|
|
6
|
+
private readonly _configService;
|
|
7
7
|
static pluginName: string;
|
|
8
|
-
constructor(_config:
|
|
8
|
+
constructor(_config: IUniverCollaborationConfig, _injector: Injector, _configService: IConfigService);
|
|
9
9
|
onStarting(): void;
|
|
10
10
|
}
|