mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
import UniffiRussh from './NativeUniffiRussh';
|
|
|
|
export function multiply(a: number, b: number): number {
|
|
return UniffiRussh.multiply(a, b);
|
|
}
|