1- use tsify_next :: Tsify ;
1+ use tsify :: Tsify ;
22#[ tsify( into_wasm_abi, from_wasm_abi) ]
33pub struct GenericStruct < T > {
44 x : T ,
55}
66const _: ( ) = {
77 extern crate serde as _serde;
8- use tsify_next :: Tsify ;
8+ use tsify :: Tsify ;
99 use wasm_bindgen:: {
1010 convert:: {
1111 FromWasmAbi , VectorFromWasmAbi , IntoWasmAbi , VectorIntoWasmAbi ,
@@ -22,7 +22,7 @@ const _: () = {
2222 impl < T > Tsify for GenericStruct < T > {
2323 type JsType = JsType ;
2424 const DECL : & ' static str = "export interface GenericStruct<T> {\n x: T;\n }" ;
25- const SERIALIZATION_CONFIG : tsify_next :: SerializationConfig = tsify_next :: SerializationConfig {
25+ const SERIALIZATION_CONFIG : tsify :: SerializationConfig = tsify :: SerializationConfig {
2626 missing_as_null : false ,
2727 hashmap_as_object : false ,
2828 large_number_types_as_bigints : false ,
@@ -244,7 +244,7 @@ const _: () = {
244244pub struct GenericNewtype < T > ( T ) ;
245245const _: ( ) = {
246246 extern crate serde as _serde;
247- use tsify_next :: Tsify ;
247+ use tsify :: Tsify ;
248248 use wasm_bindgen:: {
249249 convert:: {
250250 FromWasmAbi , VectorFromWasmAbi , IntoWasmAbi , VectorIntoWasmAbi ,
@@ -261,7 +261,7 @@ const _: () = {
261261 impl < T > Tsify for GenericNewtype < T > {
262262 type JsType = JsType ;
263263 const DECL : & ' static str = "export type GenericNewtype<T> = T;" ;
264- const SERIALIZATION_CONFIG : tsify_next :: SerializationConfig = tsify_next :: SerializationConfig {
264+ const SERIALIZATION_CONFIG : tsify :: SerializationConfig = tsify :: SerializationConfig {
265265 missing_as_null : false ,
266266 hashmap_as_object : false ,
267267 large_number_types_as_bigints : false ,
0 commit comments