mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-18 07:11:56 +03:00
16 lines
222 B
Plaintext
16 lines
222 B
Plaintext
|
enum ShapeType { "circle", "square" };
|
||
|
|
||
|
[Constructor(ShapeType kind)]
|
||
|
interface Shape {
|
||
|
static Shape triangle();
|
||
|
|
||
|
[Pure]
|
||
|
boolean isSquare();
|
||
|
|
||
|
[Pure]
|
||
|
boolean isCircle();
|
||
|
|
||
|
[Pure]
|
||
|
ShapeType getShape();
|
||
|
};
|