Files
DefinitelyTyped/types/tinymce
Pendar 7c688d2998 Modified the type definition for tinymce
It now matches the [newer version of
typescript](https://www.typescriptlang.org/docs/handbook/namespaces-and-modules.html)

that suggest exporting

a namespace as an es6 module rather than declaring a module and exporting

that.

This also works better with browserify and looking up the type declaration

from the es6 import. So:

```

import * as tinymce from 'tinymce'

```

works and there is no need for importing it like:

```

import { tinymce } from 'tinymce'

```
2017-04-12 01:03:13 +01:00
..