mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-06-30 21:11:56 +00:00
18 lines
477 B
TypeScript
18 lines
477 B
TypeScript
import {accumRes, bugLNG63, bugLNG63_2, bugLNG63_3} from "../compiled/examples/streamCan";
|
|
|
|
export async function streamCanCall() {
|
|
return await accumRes();
|
|
}
|
|
|
|
export async function bugLNG63Call(): Promise<string> {
|
|
return await bugLNG63();
|
|
}
|
|
|
|
export async function bugLNG63_2Call(): Promise<[string, string[], string[]]> {
|
|
return await bugLNG63_2();
|
|
}
|
|
|
|
export async function bugLNG63_3Call(): Promise<[string, number, number[]]> {
|
|
return await bugLNG63_3();
|
|
}
|