@ray-js/ipc-player-integration 0.0.29-beta.20 → 0.0.29-beta.21
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/ctx/ctx.composition.d.ts +16 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { FullScreen, ToggleVerticalFull } from '../widgets';
|
|
2
|
+
import { ComponentConfig } from '../interface';
|
|
3
|
+
export declare const defaultTopLeftContent: ComponentConfig[];
|
|
4
|
+
export declare const defaultTopRightContent: ComponentConfig[];
|
|
5
|
+
export declare const defaultBottomLeftContent: ComponentConfig[];
|
|
6
|
+
export declare const defaultBottomRightContent: ({
|
|
7
|
+
id: string;
|
|
8
|
+
content: typeof ToggleVerticalFull;
|
|
9
|
+
hidden: boolean;
|
|
10
|
+
} | {
|
|
11
|
+
id: string;
|
|
12
|
+
content: typeof FullScreen;
|
|
13
|
+
hidden?: undefined;
|
|
14
|
+
})[];
|
|
15
|
+
export declare const multiCameraAbsoluteContent: ComponentConfig[];
|
|
16
|
+
export declare const useCtx: import("../interface").UseCtx;
|