Generated by swagger-codegen, the file index.ts
contains:
export * from './api/api';
export * from './model/models';
The file tsd.d.ts
includes:
...
/// <reference path="path/to/index.ts" />
TypeScript version 2.2.1.
Why do I still need to use import statements (
import myDTO from 'path/to/file/myDTO'
) in my ts
files?
Am I missing a concept, should a module be declared?