@devvit/protos 0.10.20-next-2024-05-06-ba38ea3c1.0 → 0.10.20-next-2024-05-06-1d2d84ceb.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- }