mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
16 lines
365 B
TypeScript
16 lines
365 B
TypeScript
// @declaration: true
|
|
// @target: es2015
|
|
// @module: es2015, esnext
|
|
|
|
// @filename: 0.ts
|
|
export interface I { }
|
|
|
|
// @filename: 1.ts
|
|
export type {} from './0' assert { type: "json" }
|
|
export type { I } from './0' assert { type: "json" }
|
|
|
|
// @filename: 2.ts
|
|
import type { I } from './0' assert { type: "json" }
|
|
import type * as foo from './0' assert { type: "json" }
|
|
|