Skip to content

Commit

Permalink
Add guide page for typescript attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
joeywatts committed Feb 28, 2020
1 parent 50d4fb3 commit 96b287d
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions guide/src/reference/attributes/on-rust-exports/typescript.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# `typescript`

By default, Rust exports exposed to JavaScript will generate TypeScript definitions (unless `--no-typescript` is used). The `typescript` attribute can be used to toggle this behavior per function, enum, struct, or field. For example:

```rust
#[wasm_bindgen(typescript = false)]
pub enum MyHiddenEnum {
One,
Two,
Three
}

#[wasm_bindgen]
pub struct MyPoint {
pub x: u32,

#[wasm_bindgen(typescript = false)]
pub y: u32,
}

#[wasm_bindgen]
impl MyPoint {

#[wasm_bindgen(typescript = false)]
pub fn stringify(&self) -> String {
format!("({}, {})", self.x, self.y)
}
}
```

Will generate the following `.d.ts` file:

```ts
/* tslint:disable */
/* eslint-disable */
export class MyPoint {
free(): void;
x: number;
}
```

When combined with [the `typescript_custom_section` attribute](typescript_custom_section.html), this can be used to manually specify more specific function types instead of using the generated definitions.

0 comments on commit 96b287d

Please sign in to comment.