File: systemModule16.types

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (38 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
=== tests/cases/compiler/systemModule16.ts ===
import * as x from "foo";
>x : any

import * as y from "bar";
>y : any

export * from "foo";
export * from "bar"
export {x}
>x : any

export {y}
>y : any

import {a1, b1, c1 as d1} from "foo";
>a1 : any
>b1 : any
>c1 : any
>d1 : any

export {a2, b2, c2 as d2} from "bar";
>a2 : any
>b2 : any
>c2 : any
>d2 : any

x,y,a1,b1,d1;
>x,y,a1,b1,d1 : any
>x,y,a1,b1 : any
>x,y,a1 : any
>x,y : any
>x : any
>y : any
>a1 : any
>b1 : any
>d1 : any