Files
aqua-playground/src/examples/streamCanCall.ts
2022-06-27 15:46:59 +03:00

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();
}