Files
aqua-playground/src/examples/streamCanCall.ts

18 lines
477 B
TypeScript
Raw Normal View History

2022-06-27 15:46:59 +03:00
import {accumRes, bugLNG63, bugLNG63_2, bugLNG63_3} from "../compiled/examples/streamCan";
2022-06-23 13:59:53 +03:00
export async function streamCanCall() {
return await accumRes();
}
2022-06-27 15:46:59 +03:00
export async function bugLNG63Call(): Promise<string> {
2022-06-23 13:59:53 +03:00
return await bugLNG63();
}
2022-06-27 15:46:59 +03:00
export async function bugLNG63_2Call(): Promise<[string, string[], string[]]> {
2022-06-23 13:59:53 +03:00
return await bugLNG63_2();
}
2022-06-27 15:46:59 +03:00
export async function bugLNG63_3Call(): Promise<[string, number, number[]]> {
return await bugLNG63_3();
}