@volcengine/react-native-live-push 1.0.0
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/LICENSE +21 -0
- package/README.md +2 -0
- package/android/build.gradle +92 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +16 -0
- package/android/src/main/AndroidManifestNew.xml +16 -0
- package/android/src/main/java/com/volcengine/velive/rn/push/ExternalSourceHelper.java +58 -0
- package/android/src/main/java/com/volcengine/velive/rn/push/NativeVariableManager.java +19 -0
- package/android/src/main/java/com/volcengine/velive/rn/push/ScreenCaptureHelper.java +73 -0
- package/android/src/main/java/com/volcengine/velive/rn/push/VeLivePushModule.java +182 -0
- package/android/src/main/java/com/volcengine/velive/rn/push/VeLivePushModuleSpec.java +16 -0
- package/android/src/main/java/com/volcengine/velive/rn/push/VeLivePushPackage.java +27 -0
- package/android/src/main/java/com/volcengine/velive/rn/push/VeLivePushView.java +45 -0
- package/android/src/main/java/com/volcengine/velive/rn/push/VeLivePushViewManager.java +87 -0
- package/ios/VeLivePushSDK.h +24 -0
- package/ios/VeLivePushSDK.m +109 -0
- package/ios/VeLivePushView.h +24 -0
- package/ios/VeLivePushView.m +74 -0
- package/ios/VeLivePushViewManager.m +59 -0
- package/lib/commonjs/index.js +24238 -0
- package/lib/module/index.js +24186 -0
- package/lib/typescript/android/index.d.ts +44 -0
- package/lib/typescript/codegen/android/api.d.ts +1408 -0
- package/lib/typescript/codegen/android/callback.d.ts +265 -0
- package/lib/typescript/codegen/android/errorcode.d.ts +50 -0
- package/lib/typescript/codegen/android/index.d.ts +5 -0
- package/lib/typescript/codegen/android/keytype.d.ts +1069 -0
- package/lib/typescript/codegen/android/types.d.ts +32 -0
- package/lib/typescript/codegen/ios/api.d.ts +1133 -0
- package/lib/typescript/codegen/ios/callback.d.ts +251 -0
- package/lib/typescript/codegen/ios/errorcode.d.ts +104 -0
- package/lib/typescript/codegen/ios/index.d.ts +5 -0
- package/lib/typescript/codegen/ios/keytype.d.ts +934 -0
- package/lib/typescript/codegen/ios/types.d.ts +35 -0
- package/lib/typescript/codegen/pack/api.d.ts +1923 -0
- package/lib/typescript/codegen/pack/callback.d.ts +545 -0
- package/lib/typescript/codegen/pack/errorcode.d.ts +174 -0
- package/lib/typescript/codegen/pack/index.d.ts +5 -0
- package/lib/typescript/codegen/pack/keytype.d.ts +1953 -0
- package/lib/typescript/codegen/pack/types.d.ts +1 -0
- package/lib/typescript/codegen/type-shim.d.ts +6 -0
- package/lib/typescript/component.d.ts +8 -0
- package/lib/typescript/core/api.d.ts +2 -0
- package/lib/typescript/core/callback.d.ts +2 -0
- package/lib/typescript/core/env.d.ts +29 -0
- package/lib/typescript/core/errorcode.d.ts +2 -0
- package/lib/typescript/core/index.d.ts +6 -0
- package/lib/typescript/core/keytype.d.ts +7 -0
- package/lib/typescript/core/pusher.d.ts +16 -0
- package/lib/typescript/index.d.ts +2 -0
- package/lib/typescript/ios/extends.d.ts +41 -0
- package/lib/typescript/runtime.d.ts +1 -0
- package/package.json +31 -0
- package/react-native-velive-push.podspec +45 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export type id<T = any> = T;
|
|
2
|
+
export type BOOL = boolean;
|
|
3
|
+
export type int = number;
|
|
4
|
+
export type long = number;
|
|
5
|
+
export type float = number;
|
|
6
|
+
export type int64_t = number;
|
|
7
|
+
export type NSString = string;
|
|
8
|
+
export type NSMutableString = string;
|
|
9
|
+
export type NSInteger = number;
|
|
10
|
+
export type NSUInteger = number;
|
|
11
|
+
export type NSNumber = number;
|
|
12
|
+
export type NSValue = number;
|
|
13
|
+
export type NSNull = null;
|
|
14
|
+
export type NSArray<T> = Array<T>;
|
|
15
|
+
export type NSMutableArray<T> = Array<T>;
|
|
16
|
+
export type NSObject = Object;
|
|
17
|
+
export type NSDictionary = Object;
|
|
18
|
+
export type NSMutableDictionary = Object;
|
|
19
|
+
export type NSDate = Date;
|
|
20
|
+
export type NSData = ArrayBuffer;
|
|
21
|
+
export type NSURL = string;
|
|
22
|
+
export type NSError = {
|
|
23
|
+
code: number;
|
|
24
|
+
domain: string;
|
|
25
|
+
};
|
|
26
|
+
export type NSTimeInterval = number;
|
|
27
|
+
export type UIView = any;
|
|
28
|
+
export type UIImage = unknown;
|
|
29
|
+
export type CVPixelBufferRef = any;
|
|
30
|
+
export type CMSampleBufferRef = any;
|
|
31
|
+
export type CMTime = number;
|
|
32
|
+
export type GLuint = number;
|
|
33
|
+
export type CGFloat = number;
|
|
34
|
+
export type CGPoint = any;
|
|
35
|
+
export type EAGLContext = any;
|