swc/crates/swc_ecma_parser/tests/tsc/callWithSpread4.ts
2022-02-04 17:08:38 +09:00

32 lines
716 B
TypeScript

// @strict: true
// @target: esnext
type R = { a: number }
type W = { b: number }
type RW = { a: number, b: number }
declare const pli: {
(s1: R, s2: RW, s3: RW, s4: RW, s5: W): Promise<void>;
(streams: ReadonlyArray<R | W | RW>): Promise<void>;
(s1: R, s2: RW | W, ...streams: Array<RW | W>): Promise<void>;
}
declare var writes: W
declare var reads: R
declare var tr: W
declare var gun: RW[]
declare var gz: RW[]
declare var fun: (inp: any) => AsyncGenerator<string, void, unknown>
pli(
reads,
...gun,
tr,
fun,
...gz,
writes
);
declare function test(x: any, y: () => string): string | undefined;
declare var anys: any[]
test(...anys)
pli(...[reads, writes, writes] as const)