@@ -28,55 +28,39 @@ extern "C" {
2828 #[ doc = "" ]
2929 #[ doc = "*This API requires the following crate features to be activated: `TransformStream`, `WritableStream`*" ]
3030 pub fn writable ( this : & TransformStream ) -> WritableStream ;
31- #[ cfg( web_sys_unstable_apis) ]
3231 #[ wasm_bindgen( catch, constructor, js_class = "TransformStream" ) ]
3332 #[ doc = "The `new TransformStream(..)` constructor, creating a new instance of `TransformStream`." ]
3433 #[ doc = "" ]
3534 #[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream)" ]
3635 #[ doc = "" ]
3736 #[ doc = "*This API requires the following crate features to be activated: `TransformStream`*" ]
38- #[ doc = "" ]
39- #[ doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as" ]
40- #[ doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*" ]
4137 pub fn new ( ) -> Result < TransformStream , JsValue > ;
42- #[ cfg( web_sys_unstable_apis) ]
4338 #[ wasm_bindgen( catch, constructor, js_class = "TransformStream" ) ]
4439 #[ doc = "The `new TransformStream(..)` constructor, creating a new instance of `TransformStream`." ]
4540 #[ doc = "" ]
4641 #[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream)" ]
4742 #[ doc = "" ]
4843 #[ doc = "*This API requires the following crate features to be activated: `TransformStream`*" ]
49- #[ doc = "" ]
50- #[ doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as" ]
51- #[ doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*" ]
5244 pub fn new_with_transformer ( transformer : & :: js_sys:: Object )
5345 -> Result < TransformStream , JsValue > ;
54- #[ cfg( web_sys_unstable_apis) ]
5546 #[ cfg( feature = "QueuingStrategy" ) ]
5647 #[ wasm_bindgen( catch, constructor, js_class = "TransformStream" ) ]
5748 #[ doc = "The `new TransformStream(..)` constructor, creating a new instance of `TransformStream`." ]
5849 #[ doc = "" ]
5950 #[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream)" ]
6051 #[ doc = "" ]
6152 #[ doc = "*This API requires the following crate features to be activated: `QueuingStrategy`, `TransformStream`*" ]
62- #[ doc = "" ]
63- #[ doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as" ]
64- #[ doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*" ]
6553 pub fn new_with_transformer_and_writable_strategy (
6654 transformer : & :: js_sys:: Object ,
6755 writable_strategy : & QueuingStrategy ,
6856 ) -> Result < TransformStream , JsValue > ;
69- #[ cfg( web_sys_unstable_apis) ]
7057 #[ cfg( feature = "QueuingStrategy" ) ]
7158 #[ wasm_bindgen( catch, constructor, js_class = "TransformStream" ) ]
7259 #[ doc = "The `new TransformStream(..)` constructor, creating a new instance of `TransformStream`." ]
7360 #[ doc = "" ]
7461 #[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream)" ]
7562 #[ doc = "" ]
7663 #[ doc = "*This API requires the following crate features to be activated: `QueuingStrategy`, `TransformStream`*" ]
77- #[ doc = "" ]
78- #[ doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as" ]
79- #[ doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*" ]
8064 pub fn new_with_transformer_and_writable_strategy_and_readable_strategy (
8165 transformer : & :: js_sys:: Object ,
8266 writable_strategy : & QueuingStrategy ,
0 commit comments