@netless/slide 0.8.5 → 0.8.7-deta-1
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/README.md +11 -0
- package/lib/Slide.d.ts +6 -2
- package/lib/Slide.js +39 -39
- package/lib/global.js +0 -2
- package/package.json +2 -2
package/README.md
CHANGED
package/lib/Slide.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SlideError, ILoaderDelegate } from "@netless/ppt-player";
|
|
2
|
-
import {
|
|
2
|
+
import { IPlugin } from "@netless/plugin-system";
|
|
3
3
|
export { ErrorType } from "@netless/ppt-player";
|
|
4
4
|
export type { ILoaderDelegate } from "@netless/ppt-player";
|
|
5
5
|
export * from "./global";
|
|
@@ -332,7 +332,11 @@ export declare class Slide extends Slide_base {
|
|
|
332
332
|
static _tempLog: string;
|
|
333
333
|
static _tempLogIndex: number;
|
|
334
334
|
static flushLog(force?: boolean): Promise<void>;
|
|
335
|
-
static
|
|
335
|
+
static remoteLogAddress: string | null;
|
|
336
|
+
static stopRemoteLog(): void;
|
|
337
|
+
static startRemoteLog(address: string): Promise<void>;
|
|
338
|
+
static appendLogString(logStr: string): void;
|
|
339
|
+
static usePlugin: (plugin: IPlugin) => void;
|
|
336
340
|
private iosResetCache;
|
|
337
341
|
private iosNewPlayer?;
|
|
338
342
|
private needClearCacheImage;
|