@@ -36,42 +36,42 @@ export function echo_vec_uninit_i64(a: BigInt64Array): BigInt64Array;
36
36
export function echo_vec_string ( a : ( string ) [ ] ) : ( string ) [ ] ;
37
37
export function echo_struct ( a : Foo ) : Foo ;
38
38
export function echo_vec_struct ( a : ( Foo ) [ ] ) : ( Foo ) [ ] ;
39
- export function echo_option_u8 ( a ?: number ) : number | undefined ;
40
- export function echo_option_i8 ( a ?: number ) : number | undefined ;
41
- export function echo_option_u16 ( a ?: number ) : number | undefined ;
42
- export function echo_option_i16 ( a ?: number ) : number | undefined ;
43
- export function echo_option_u32 ( a ?: number ) : number | undefined ;
44
- export function echo_option_i32 ( a ?: number ) : number | undefined ;
45
- export function echo_option_u64 ( a ?: bigint ) : bigint | undefined ;
46
- export function echo_option_i64 ( a ?: bigint ) : bigint | undefined ;
47
- export function echo_option_u128 ( a ?: bigint ) : bigint | undefined ;
48
- export function echo_option_i128 ( a ?: bigint ) : bigint | undefined ;
49
- export function echo_option_usize ( a ?: number ) : number | undefined ;
50
- export function echo_option_isize ( a ?: number ) : number | undefined ;
51
- export function echo_option_f32 ( a ?: number ) : number | undefined ;
52
- export function echo_option_f64 ( a ?: number ) : number | undefined ;
53
- export function echo_option_bool ( a ?: boolean ) : boolean | undefined ;
54
- export function echo_option_char ( a ?: string ) : string | undefined ;
55
- export function echo_option_string ( a ?: string ) : string | undefined ;
56
- export function echo_option_vec_u8 ( a ?: Uint8Array ) : Uint8Array | undefined ;
57
- export function echo_option_vec_i8 ( a ?: Int8Array ) : Int8Array | undefined ;
58
- export function echo_option_vec_u16 ( a ?: Uint16Array ) : Uint16Array | undefined ;
59
- export function echo_option_vec_i16 ( a ?: Int16Array ) : Int16Array | undefined ;
60
- export function echo_option_vec_u32 ( a ?: Uint32Array ) : Uint32Array | undefined ;
61
- export function echo_option_vec_i32 ( a ?: Int32Array ) : Int32Array | undefined ;
62
- export function echo_option_vec_u64 ( a ?: BigUint64Array ) : BigUint64Array | undefined ;
63
- export function echo_option_vec_i64 ( a ?: BigInt64Array ) : BigInt64Array | undefined ;
64
- export function echo_option_vec_uninit_u8 ( a ?: Uint8Array ) : Uint8Array | undefined ;
65
- export function echo_option_vec_uninit_i8 ( a ?: Int8Array ) : Int8Array | undefined ;
66
- export function echo_option_vec_uninit_u16 ( a ?: Uint16Array ) : Uint16Array | undefined ;
67
- export function echo_option_vec_uninit_i16 ( a ?: Int16Array ) : Int16Array | undefined ;
68
- export function echo_option_vec_uninit_u32 ( a ?: Uint32Array ) : Uint32Array | undefined ;
69
- export function echo_option_vec_uninit_i32 ( a ?: Int32Array ) : Int32Array | undefined ;
70
- export function echo_option_vec_uninit_u64 ( a ?: BigUint64Array ) : BigUint64Array | undefined ;
71
- export function echo_option_vec_uninit_i64 ( a ?: BigInt64Array ) : BigInt64Array | undefined ;
72
- export function echo_option_vec_string ( a ?: ( string ) [ ] ) : ( string ) [ ] | undefined ;
73
- export function echo_option_struct ( a ?: Foo ) : Foo | undefined ;
74
- export function echo_option_vec_struct ( a ?: ( Foo ) [ ] ) : ( Foo ) [ ] | undefined ;
39
+ export function echo_option_u8 ( a ?: number | null ) : number | undefined ;
40
+ export function echo_option_i8 ( a ?: number | null ) : number | undefined ;
41
+ export function echo_option_u16 ( a ?: number | null ) : number | undefined ;
42
+ export function echo_option_i16 ( a ?: number | null ) : number | undefined ;
43
+ export function echo_option_u32 ( a ?: number | null ) : number | undefined ;
44
+ export function echo_option_i32 ( a ?: number | null ) : number | undefined ;
45
+ export function echo_option_u64 ( a ?: bigint | null ) : bigint | undefined ;
46
+ export function echo_option_i64 ( a ?: bigint | null ) : bigint | undefined ;
47
+ export function echo_option_u128 ( a ?: bigint | null ) : bigint | undefined ;
48
+ export function echo_option_i128 ( a ?: bigint | null ) : bigint | undefined ;
49
+ export function echo_option_usize ( a ?: number | null ) : number | undefined ;
50
+ export function echo_option_isize ( a ?: number | null ) : number | undefined ;
51
+ export function echo_option_f32 ( a ?: number | null ) : number | undefined ;
52
+ export function echo_option_f64 ( a ?: number | null ) : number | undefined ;
53
+ export function echo_option_bool ( a ?: boolean | null ) : boolean | undefined ;
54
+ export function echo_option_char ( a ?: string | null ) : string | undefined ;
55
+ export function echo_option_string ( a ?: string | null ) : string | undefined ;
56
+ export function echo_option_vec_u8 ( a ?: Uint8Array | null ) : Uint8Array | undefined ;
57
+ export function echo_option_vec_i8 ( a ?: Int8Array | null ) : Int8Array | undefined ;
58
+ export function echo_option_vec_u16 ( a ?: Uint16Array | null ) : Uint16Array | undefined ;
59
+ export function echo_option_vec_i16 ( a ?: Int16Array | null ) : Int16Array | undefined ;
60
+ export function echo_option_vec_u32 ( a ?: Uint32Array | null ) : Uint32Array | undefined ;
61
+ export function echo_option_vec_i32 ( a ?: Int32Array | null ) : Int32Array | undefined ;
62
+ export function echo_option_vec_u64 ( a ?: BigUint64Array | null ) : BigUint64Array | undefined ;
63
+ export function echo_option_vec_i64 ( a ?: BigInt64Array | null ) : BigInt64Array | undefined ;
64
+ export function echo_option_vec_uninit_u8 ( a ?: Uint8Array | null ) : Uint8Array | undefined ;
65
+ export function echo_option_vec_uninit_i8 ( a ?: Int8Array | null ) : Int8Array | undefined ;
66
+ export function echo_option_vec_uninit_u16 ( a ?: Uint16Array | null ) : Uint16Array | undefined ;
67
+ export function echo_option_vec_uninit_i16 ( a ?: Int16Array | null ) : Int16Array | undefined ;
68
+ export function echo_option_vec_uninit_u32 ( a ?: Uint32Array | null ) : Uint32Array | undefined ;
69
+ export function echo_option_vec_uninit_i32 ( a ?: Int32Array | null ) : Int32Array | undefined ;
70
+ export function echo_option_vec_uninit_u64 ( a ?: BigUint64Array | null ) : BigUint64Array | undefined ;
71
+ export function echo_option_vec_uninit_i64 ( a ?: BigInt64Array | null ) : BigInt64Array | undefined ;
72
+ export function echo_option_vec_string ( a ?: ( string ) [ ] | null ) : ( string ) [ ] | undefined ;
73
+ export function echo_option_struct ( a ?: Foo | null ) : Foo | undefined ;
74
+ export function echo_option_vec_struct ( a ?: ( Foo ) [ ] | null ) : ( Foo ) [ ] | undefined ;
75
75
export class Foo {
76
76
private constructor ( ) ;
77
77
free ( ) : void ;
0 commit comments