Skip to content

Instantly share code, notes, and snippets.

@manrueda
Created March 29, 2019 20:31
Show Gist options
  • Save manrueda/bf6914acec617d3bb579e9a1f95f8a63 to your computer and use it in GitHub Desktop.
Save manrueda/bf6914acec617d3bb579e9a1f95f8a63 to your computer and use it in GitHub Desktop.
typedoc-plugin-external-module-name issue
/**
* @module @cool/package
*/
import * as _sub from './sub'
export const sub: typeof _sub = _sub;
/**
* @module @cool/package/sub
* @preferred
*/
export * from './other'
/**
* @module @cool/package/sub
*/
export const two = 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment