mirror of
https://github.com/tauri-apps/tauri-bindgen.git
synced 2026-01-31 00:45:21 +01:00
7 lines
157 B
Plaintext
7 lines
157 B
Plaintext
interface floats {
|
|
func float32_param(x: float32)
|
|
func float64_param(x: float64)
|
|
func float32_result() -> float32
|
|
func float64_result() -> float64
|
|
}
|