This repository was archived by the owner on Nov 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +12
-1
lines changed Expand file tree Collapse file tree 6 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ - 0.x
7
8
paths :
8
9
- ' .github/workflows/build-android.yml'
9
10
- ' android/**'
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ - 0.x
7
8
paths :
8
9
- ' .github/workflows/build-ios.yml'
9
10
- ' ios/**'
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ - 0.x
7
8
paths :
8
9
- ' .github/workflows/validate-android.yml'
9
10
- ' android/**'
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ - 0.x
7
8
paths :
8
9
- ' .github/workflows/validate-cpp.yml'
9
10
- ' cpp/**'
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ - 0.x
7
8
paths :
8
9
- ' .github/workflows/validate-js.yml'
9
10
- ' src/**'
Original file line number Diff line number Diff line change @@ -15,7 +15,13 @@ import type {
15
15
import { type CipherKey } from 'crypto' ; // @types /node
16
16
17
17
export type BufferLike = ArrayBuffer | Buffer | SBuffer | ArrayBufferView ;
18
- export type BinaryLike = string | ArrayBuffer | Buffer | SBuffer | TypedArray | DataView ;
18
+ export type BinaryLike =
19
+ | string
20
+ | ArrayBuffer
21
+ | Buffer
22
+ | SBuffer
23
+ | TypedArray
24
+ | DataView ;
19
25
export type BinaryLikeNode = CipherKey | BinaryLike ;
20
26
21
27
export type BinaryToTextEncoding = 'base64' | 'base64url' | 'hex' | 'binary' ;
You can’t perform that action at this time.
0 commit comments