Namespaces can be converted to types using the typeof keyword.
import * as Vector3 from './Vector3'
type Vector3 = typeof Vector3
let a:Vector3
Namespaces can be converted to types using the typeof keyword.
import * as Vector3 from './Vector3'
type Vector3 = typeof Vector3
let a:Vector3