mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-07-02 03:41:38 +00:00
canonicalization tests
This commit is contained in:
@ -1,13 +1,17 @@
|
||||
import {accumRes, bugLNG63, bugLNG63_2} from "../compiled/examples/streamCan";
|
||||
import {accumRes, bugLNG63, bugLNG63_2, bugLNG63_3} from "../compiled/examples/streamCan";
|
||||
|
||||
export async function streamCanCall() {
|
||||
return await accumRes();
|
||||
}
|
||||
|
||||
export async function bugLNG63Call() {
|
||||
export async function bugLNG63Call(): Promise<string> {
|
||||
return await bugLNG63();
|
||||
}
|
||||
|
||||
export async function bugLNG63_2Call() {
|
||||
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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user