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

14 lines
297 B
TypeScript
Raw Normal View History

2022-06-23 13:59:53 +03:00
import {accumRes, bugLNG63, bugLNG63_2} from "../compiled/examples/streamCan";
export async function streamCanCall() {
return await accumRes();
}
export async function bugLNG63Call() {
return await bugLNG63();
}
export async function bugLNG63_2Call() {
return await bugLNG63_2();
}