@devvit/protos 0.10.20-next-2024-05-06-a9757fbcc.0 → 0.10.20-next-2024-05-06-18be4b555.0
Sign up to get free protection for your applications and to get access to all the features.
- package/index.d.ts +2 -8
- package/index.d.ts.map +1 -1
- package/index.js +0 -4
- package/meta.min.json +10 -142
- package/package.json +16 -10
- package/protos.min.js +2 -2
- package/protos.min.js.map +4 -4
- package/schema/devvit/actor/gl/glclient.proto +0 -22
- package/schema/devvit/plugin/gl/glrenderer.proto +0 -36
- package/schema/devvit/plugin/gl/methods.proto +0 -129
- package/schema/devvit/plugin/gl/methodtype.proto +0 -13
- package/types/devvit/actor/gl/glclient.d.ts +0 -147
- package/types/devvit/actor/gl/glclient.d.ts.map +0 -1
- package/types/devvit/actor/gl/glclient.js +0 -213
- package/types/devvit/plugin/gl/glrenderer.d.ts +0 -104
- package/types/devvit/plugin/gl/glrenderer.d.ts.map +0 -1
- package/types/devvit/plugin/gl/glrenderer.js +0 -326
- package/types/devvit/plugin/gl/methods.d.ts +0 -126
- package/types/devvit/plugin/gl/methods.d.ts.map +0 -1
- package/types/devvit/plugin/gl/methods.js +0 -715
- package/types/devvit/plugin/gl/methodtype.d.ts +0 -15
- package/types/devvit/plugin/gl/methodtype.d.ts.map +0 -1
- package/types/devvit/plugin/gl/methodtype.js +0 -49
@@ -1,15 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* #methodtype.ts
|
3
|
-
*
|
4
|
-
* @packageDocumentation
|
5
|
-
*/
|
6
|
-
export declare enum GLMethodType {
|
7
|
-
ASYNC = 0,
|
8
|
-
CONSTRUCTOR = 1,
|
9
|
-
DESTRUCTOR = 2,
|
10
|
-
SYNC = 3,
|
11
|
-
UNRECOGNIZED = -1
|
12
|
-
}
|
13
|
-
export declare function gLMethodTypeFromJSON(object: any): GLMethodType;
|
14
|
-
export declare function gLMethodTypeToJSON(object: GLMethodType): number;
|
15
|
-
//# sourceMappingURL=methodtype.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"methodtype.d.ts","sourceRoot":"","sources":["../../../../../src/types/devvit/plugin/gl/methodtype.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,oBAAY,YAAY;IACtB,KAAK,IAAI;IACT,WAAW,IAAI;IACf,UAAU,IAAI;IACd,IAAI,IAAI;IACR,YAAY,KAAK;CAClB;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY,CAmB9D;AAED,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,YAAY,GAAG,MAAM,CAc/D"}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* #methodtype.ts
|
3
|
-
*
|
4
|
-
* @packageDocumentation
|
5
|
-
*/
|
6
|
-
/* eslint-disable */
|
7
|
-
export var GLMethodType;
|
8
|
-
(function (GLMethodType) {
|
9
|
-
GLMethodType[GLMethodType["ASYNC"] = 0] = "ASYNC";
|
10
|
-
GLMethodType[GLMethodType["CONSTRUCTOR"] = 1] = "CONSTRUCTOR";
|
11
|
-
GLMethodType[GLMethodType["DESTRUCTOR"] = 2] = "DESTRUCTOR";
|
12
|
-
GLMethodType[GLMethodType["SYNC"] = 3] = "SYNC";
|
13
|
-
GLMethodType[GLMethodType["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
14
|
-
})(GLMethodType || (GLMethodType = {}));
|
15
|
-
export function gLMethodTypeFromJSON(object) {
|
16
|
-
switch (object) {
|
17
|
-
case 0:
|
18
|
-
case "ASYNC":
|
19
|
-
return GLMethodType.ASYNC;
|
20
|
-
case 1:
|
21
|
-
case "CONSTRUCTOR":
|
22
|
-
return GLMethodType.CONSTRUCTOR;
|
23
|
-
case 2:
|
24
|
-
case "DESTRUCTOR":
|
25
|
-
return GLMethodType.DESTRUCTOR;
|
26
|
-
case 3:
|
27
|
-
case "SYNC":
|
28
|
-
return GLMethodType.SYNC;
|
29
|
-
case -1:
|
30
|
-
case "UNRECOGNIZED":
|
31
|
-
default:
|
32
|
-
return GLMethodType.UNRECOGNIZED;
|
33
|
-
}
|
34
|
-
}
|
35
|
-
export function gLMethodTypeToJSON(object) {
|
36
|
-
switch (object) {
|
37
|
-
case GLMethodType.ASYNC:
|
38
|
-
return 0;
|
39
|
-
case GLMethodType.CONSTRUCTOR:
|
40
|
-
return 1;
|
41
|
-
case GLMethodType.DESTRUCTOR:
|
42
|
-
return 2;
|
43
|
-
case GLMethodType.SYNC:
|
44
|
-
return 3;
|
45
|
-
case GLMethodType.UNRECOGNIZED:
|
46
|
-
default:
|
47
|
-
return -1;
|
48
|
-
}
|
49
|
-
}
|