canonicalization tests

This commit is contained in:
DieMyst
2022-06-27 15:46:59 +03:00
parent eec1917df6
commit e3ec928f94
48 changed files with 397 additions and 252 deletions

View File

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