summaryrefslogtreecommitdiff
path: root/deno2/js/msg.pb.d.ts
blob: 1bfb94f38af9023643ebb7f3cd16acbec624253c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import * as $protobuf from "protobufjs";

/** Namespace deno. */
export namespace deno {

    /** Properties of a BaseMsg. */
    interface IBaseMsg {

        /** BaseMsg channel */
        channel?: (string|null);

        /** BaseMsg payload */
        payload?: (Uint8Array|null);
    }

    /** Represents a BaseMsg. */
    class BaseMsg implements IBaseMsg {

        /**
         * Constructs a new BaseMsg.
         * @param [properties] Properties to set
         */
        constructor(properties?: deno.IBaseMsg);

        /** BaseMsg channel. */
        public channel: string;

        /** BaseMsg payload. */
        public payload: Uint8Array;

        /**
         * Creates a new BaseMsg instance using the specified properties.
         * @param [properties] Properties to set
         * @returns BaseMsg instance
         */
        public static create(properties?: deno.IBaseMsg): deno.BaseMsg;

        /**
         * Encodes the specified BaseMsg message. Does not implicitly {@link deno.BaseMsg.verify|verify} messages.
         * @param message BaseMsg message or plain object to encode
         * @param [writer] Writer to encode to
         * @returns Writer
         */
        public static encode(message: deno.IBaseMsg, writer?: $protobuf.Writer): $protobuf.Writer;

        /**
         * Encodes the specified BaseMsg message, length delimited. Does not implicitly {@link deno.BaseMsg.verify|verify} messages.
         * @param message BaseMsg message or plain object to encode
         * @param [writer] Writer to encode to
         * @returns Writer
         */
        public static encodeDelimited(message: deno.IBaseMsg, writer?: $protobuf.Writer): $protobuf.Writer;

        /**
         * Decodes a BaseMsg message from the specified reader or buffer.
         * @param reader Reader or buffer to decode from
         * @param [length] Message length if known beforehand
         * @returns BaseMsg
         * @throws {Error} If the payload is not a reader or valid buffer
         * @throws {$protobuf.util.ProtocolError} If required fields are missing
         */
        public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): deno.BaseMsg;

        /**
         * Decodes a BaseMsg message from the specified reader or buffer, length delimited.
         * @param reader Reader or buffer to decode from
         * @returns BaseMsg
         * @throws {Error} If the payload is not a reader or valid buffer
         * @throws {$protobuf.util.ProtocolError} If required fields are missing
         */
        public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): deno.BaseMsg;

        /**
         * Verifies a BaseMsg message.
         * @param message Plain object to verify
         * @returns `null` if valid, otherwise the reason why it is not
         */
        public static verify(message: { [k: string]: any }): (string|null);

        /**
         * Creates a BaseMsg message from a plain object. Also converts values to their respective internal types.
         * @param object Plain object
         * @returns BaseMsg
         */
        public static fromObject(object: { [k: string]: any }): deno.BaseMsg;

        /**
         * Creates a plain object from a BaseMsg message. Also converts values to other types if specified.
         * @param message BaseMsg
         * @param [options] Conversion options
         * @returns Plain object
         */
        public static toObject(message: deno.BaseMsg, options?: $protobuf.IConversionOptions): { [k: string]: any };

        /**
         * Converts this BaseMsg to JSON.
         * @returns JSON object
         */
        public toJSON(): { [k: string]: any };
    }

    /** Properties of a Msg. */
    interface IMsg {

        /** Msg command */
        command?: (deno.Msg.Command|null);

        /** Msg error */
        error?: (string|null);

        /** Msg startCwd */
        startCwd?: (string|null);

        /** Msg startArgv */
        startArgv?: (string[]|null);

        /** Msg startDebugFlag */
        startDebugFlag?: (boolean|null);

        /** Msg startMainJs */
        startMainJs?: (string|null);

        /** Msg startMainMap */
        startMainMap?: (string|null);

        /** Msg codeFetchModuleSpecifier */
        codeFetchModuleSpecifier?: (string|null);

        /** Msg codeFetchContainingFile */
        codeFetchContainingFile?: (string|null);

        /** Msg codeFetchResModuleName */
        codeFetchResModuleName?: (string|null);

        /** Msg codeFetchResFilename */
        codeFetchResFilename?: (string|null);

        /** Msg codeFetchResSourceCode */
        codeFetchResSourceCode?: (string|null);

        /** Msg codeFetchResOutputCode */
        codeFetchResOutputCode?: (string|null);

        /** Msg codeCacheFilename */
        codeCacheFilename?: (string|null);

        /** Msg codeCacheSourceCode */
        codeCacheSourceCode?: (string|null);

        /** Msg codeCacheOutputCode */
        codeCacheOutputCode?: (string|null);

        /** Msg exitCode */
        exitCode?: (number|null);

        /** Msg timerStartId */
        timerStartId?: (number|null);

        /** Msg timerStartInterval */
        timerStartInterval?: (boolean|null);

        /** Msg timerStartDelay */
        timerStartDelay?: (number|null);

        /** Msg timerReadyId */
        timerReadyId?: (number|null);

        /** Msg timerReadyDone */
        timerReadyDone?: (boolean|null);

        /** Msg timerClearId */
        timerClearId?: (number|null);

        /** Msg fetchReqId */
        fetchReqId?: (number|null);

        /** Msg fetchReqUrl */
        fetchReqUrl?: (string|null);

        /** Msg fetchResId */
        fetchResId?: (number|null);

        /** Msg fetchResStatus */
        fetchResStatus?: (number|null);

        /** Msg fetchResHeaderLine */
        fetchResHeaderLine?: (string[]|null);

        /** Msg fetchResBody */
        fetchResBody?: (Uint8Array|null);

        /** Msg readFileSyncFilename */
        readFileSyncFilename?: (string|null);

        /** Msg readFileSyncData */
        readFileSyncData?: (Uint8Array|null);

        /** Msg writeFileSyncFilename */
        writeFileSyncFilename?: (string|null);

        /** Msg writeFileSyncData */
        writeFileSyncData?: (Uint8Array|null);

        /** Msg writeFileSyncPerm */
        writeFileSyncPerm?: (number|null);
    }

    /** Represents a Msg. */
    class Msg implements IMsg {

        /**
         * Constructs a new Msg.
         * @param [properties] Properties to set
         */
        constructor(properties?: deno.IMsg);

        /** Msg command. */
        public command: deno.Msg.Command;

        /** Msg error. */
        public error: string;

        /** Msg startCwd. */
        public startCwd: string;

        /** Msg startArgv. */
        public startArgv: string[];

        /** Msg startDebugFlag. */
        public startDebugFlag: boolean;

        /** Msg startMainJs. */
        public startMainJs: string;

        /** Msg startMainMap. */
        public startMainMap: string;

        /** Msg codeFetchModuleSpecifier. */
        public codeFetchModuleSpecifier: string;

        /** Msg codeFetchContainingFile. */
        public codeFetchContainingFile: string;

        /** Msg codeFetchResModuleName. */
        public codeFetchResModuleName: string;

        /** Msg codeFetchResFilename. */
        public codeFetchResFilename: string;

        /** Msg codeFetchResSourceCode. */
        public codeFetchResSourceCode: string;

        /** Msg codeFetchResOutputCode. */
        public codeFetchResOutputCode: string;

        /** Msg codeCacheFilename. */
        public codeCacheFilename: string;

        /** Msg codeCacheSourceCode. */
        public codeCacheSourceCode: string;

        /** Msg codeCacheOutputCode. */
        public codeCacheOutputCode: string;

        /** Msg exitCode. */
        public exitCode: number;

        /** Msg timerStartId. */
        public timerStartId: number;

        /** Msg timerStartInterval. */
        public timerStartInterval: boolean;

        /** Msg timerStartDelay. */
        public timerStartDelay: number;

        /** Msg timerReadyId. */
        public timerReadyId: number;

        /** Msg timerReadyDone. */
        public timerReadyDone: boolean;

        /** Msg timerClearId. */
        public timerClearId: number;

        /** Msg fetchReqId. */
        public fetchReqId: number;

        /** Msg fetchReqUrl. */
        public fetchReqUrl: string;

        /** Msg fetchResId. */
        public fetchResId: number;

        /** Msg fetchResStatus. */
        public fetchResStatus: number;

        /** Msg fetchResHeaderLine. */
        public fetchResHeaderLine: string[];

        /** Msg fetchResBody. */
        public fetchResBody: Uint8Array;

        /** Msg readFileSyncFilename. */
        public readFileSyncFilename: string;

        /** Msg readFileSyncData. */
        public readFileSyncData: Uint8Array;

        /** Msg writeFileSyncFilename. */
        public writeFileSyncFilename: string;

        /** Msg writeFileSyncData. */
        public writeFileSyncData: Uint8Array;

        /** Msg writeFileSyncPerm. */
        public writeFileSyncPerm: number;

        /**
         * Creates a new Msg instance using the specified properties.
         * @param [properties] Properties to set
         * @returns Msg instance
         */
        public static create(properties?: deno.IMsg): deno.Msg;

        /**
         * Encodes the specified Msg message. Does not implicitly {@link deno.Msg.verify|verify} messages.
         * @param message Msg message or plain object to encode
         * @param [writer] Writer to encode to
         * @returns Writer
         */
        public static encode(message: deno.IMsg, writer?: $protobuf.Writer): $protobuf.Writer;

        /**
         * Encodes the specified Msg message, length delimited. Does not implicitly {@link deno.Msg.verify|verify} messages.
         * @param message Msg message or plain object to encode
         * @param [writer] Writer to encode to
         * @returns Writer
         */
        public static encodeDelimited(message: deno.IMsg, writer?: $protobuf.Writer): $protobuf.Writer;

        /**
         * Decodes a Msg message from the specified reader or buffer.
         * @param reader Reader or buffer to decode from
         * @param [length] Message length if known beforehand
         * @returns Msg
         * @throws {Error} If the payload is not a reader or valid buffer
         * @throws {$protobuf.util.ProtocolError} If required fields are missing
         */
        public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): deno.Msg;

        /**
         * Decodes a Msg message from the specified reader or buffer, length delimited.
         * @param reader Reader or buffer to decode from
         * @returns Msg
         * @throws {Error} If the payload is not a reader or valid buffer
         * @throws {$protobuf.util.ProtocolError} If required fields are missing
         */
        public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): deno.Msg;

        /**
         * Verifies a Msg message.
         * @param message Plain object to verify
         * @returns `null` if valid, otherwise the reason why it is not
         */
        public static verify(message: { [k: string]: any }): (string|null);

        /**
         * Creates a Msg message from a plain object. Also converts values to their respective internal types.
         * @param object Plain object
         * @returns Msg
         */
        public static fromObject(object: { [k: string]: any }): deno.Msg;

        /**
         * Creates a plain object from a Msg message. Also converts values to other types if specified.
         * @param message Msg
         * @param [options] Conversion options
         * @returns Plain object
         */
        public static toObject(message: deno.Msg, options?: $protobuf.IConversionOptions): { [k: string]: any };

        /**
         * Converts this Msg to JSON.
         * @returns JSON object
         */
        public toJSON(): { [k: string]: any };
    }

    namespace Msg {

        /** Command enum. */
        enum Command {
            ERROR = 0,
            START = 1,
            CODE_FETCH = 2,
            CODE_FETCH_RES = 3,
            CODE_CACHE = 4,
            EXIT = 5,
            TIMER_START = 6,
            TIMER_READY = 7,
            TIMER_CLEAR = 8,
            FETCH_REQ = 9,
            FETCH_RES = 10,
            READ_FILE_SYNC = 11,
            READ_FILE_SYNC_RES = 12,
            WRITE_FILE_SYNC = 13
        }
    }
}