xref: /aosp_15_r20/external/bazelbuild-rules_rust/wasm_bindgen/providers.bzl (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1"""Rust WASM bindgen providers"""
2
3RustWasmBindgenInfo = provider(
4    doc = "Info about wasm-bindgen outputs.",
5    fields = {
6        "js": "Depset[File]: The Javascript files produced by `wasm-bindgen`.",
7        "ts": "Depset[File]: The Typescript files produced by `wasm-bindgen`.",
8        "wasm": "File: The `.wasm` file generated by `wasm-bindgen`.",
9    },
10)
11