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 Mar 3, 2020
1 parent fad83d0 commit 17d7873
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions guide/src/reference/attributes/on-rust-exports/skip_typescript.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# `skip_typescript`

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

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

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

#[wasm_bindgen(skip_typescript)]
pub y: u32,
}

#[wasm_bindgen]
impl MyPoint {

#[wasm_bindgen(skip_typescript)]
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 17d7873

Please sign in to comment.