chore: fix wrong aligned protocol YAML (#10947)

This commit is contained in:
Max Schmitt 2021-12-15 11:12:13 -08:00 committed by GitHub
parent ce225e50f4
commit 4fd8a40129
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -3927,7 +3927,9 @@ export interface JsonPipeChannel extends JsonPipeEventTarget, Channel {
export type JsonPipeMessageEvent = { export type JsonPipeMessageEvent = {
message: any, message: any,
}; };
export type JsonPipeClosedEvent = {}; export type JsonPipeClosedEvent = {
error?: SerializedError,
};
export type JsonPipeSendParams = { export type JsonPipeSendParams = {
message: any, message: any,
}; };

View File

@ -3049,4 +3049,5 @@ JsonPipe:
message: json message: json
closed: closed:
parameters:
error: SerializedError? error: SerializedError?