While you can augment existing modules by adding new types (interface, class, etc), you cannot merge types (for example, adding property to interface).
This is due to design limitation in TypeScript that augmentation does not work with export *
syntax:
microsoft/TypeScript#9532
Workaround: TBD