mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-06-28 15:41:55 +00:00
7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
![]() |
import {FluenceClient} from "@fluencelabs/fluence";
|
||
|
import {ifElseCall} from "./compiled/if";
|
||
|
|
||
|
export async function ifCall(client: FluenceClient) {
|
||
|
ifElseCall(client, false)
|
||
|
ifElseCall(client, true)
|
||
|
}
|