Can someone help me understand how different the namespace and module is?
AWS.d.ts
declare module AWS {
...
...
}
export = AWS
helper.d.ts
export declare namespace Helpers{
...
...
}
app.component.d.ts
import {Helpers} from 'mystartup_commons'; //<= works fine
import {AWS} from 'aws-sdk';
Error:
ERROR in /Users/ishandutta2007/Documents/Projects/myproj/src/app/app.component.ts (1,9): Module '"/Users/is handutta2007/Documents/Projects/myproj/node_modules/aws-sdk/typings/AWS"' has no exported member 'AWS'.)