TypeScript/tests/cases/compiler/strictModeWordInImportDeclaration.ts

5 lines
126 B
TypeScript
Raw Normal View History

// @target: ES6
"use strict"
import * as package from "./1"
import {foo as private} from "./1"
import public from "./1"