File tree Expand file tree Collapse file tree 6 files changed +23
-14
lines changed Expand file tree Collapse file tree 6 files changed +23
-14
lines changed Original file line number Diff line number Diff line change 11---
22name : Bug report
33about : Create a report to help us improve
4- title : ' '
5- labels : ' to triage'
6- assignees : ' '
4+ title : " "
5+ labels : " to triage"
6+ assignees : " "
77---
88
99** Describe the bug**
Original file line number Diff line number Diff line change 11---
22name : Feature request
33about : Suggest an idea for this project
4- title : ' '
5- labels : ' enhancement'
6- assignees : ' '
4+ title : " "
5+ labels : " enhancement"
6+ assignees : " "
77---
88
99** Is your feature request related to a problem? Please describe.**
Original file line number Diff line number Diff line change 11---
22name : Bug fix
33about : A fix for a known issue
4- title : ' '
5- labels : ' to triage'
6- assignees : ' '
4+ title : " "
5+ labels : " to triage"
6+ assignees : " "
77---
88
99Related issue or discussion:
Original file line number Diff line number Diff line change 11---
22name : Feature implementation
33about : A new awesome feature
4- title : ' '
5- labels : ' enhancement'
6- assignees : ' '
4+ title : " "
5+ labels : " enhancement"
6+ assignees : " "
77---
88
99Related issue or discussion:
Original file line number Diff line number Diff line change @@ -12,7 +12,12 @@ export type PacketType =
1212 | "noop"
1313 | "error" ;
1414
15- export type RawData = string | ArrayBuffer | ArrayBufferView | Blob ;
15+ export type RawData =
16+ | string
17+ | ArrayBuffer
18+ // @ts -ignore ArrayBufferView is not generic in Deno v1
19+ | ArrayBufferView < ArrayBuffer >
20+ | Blob ;
1621
1722export interface Packet {
1823 type : PacketType ;
Original file line number Diff line number Diff line change @@ -22,7 +22,11 @@ export interface Packet {
2222 attachments ?: number ;
2323}
2424
25- type Attachments = ArrayBuffer | ArrayBufferView | Blob ;
25+ type Attachments =
26+ | ArrayBuffer
27+ // @ts -ignore ArrayBufferView is not generic in Deno v1
28+ | ArrayBufferView < ArrayBuffer >
29+ | Blob ;
2630
2731export class Encoder {
2832 public encode ( packet : Packet ) : RawData [ ] {
You can’t perform that action at this time.
0 commit comments