Skip to content

Instantly share code, notes, and snippets.

@anstarovoyt
Created July 17, 2015 10:44
Show Gist options
  • Save anstarovoyt/3e96ac71dceef7157b66 to your computer and use it in GitHub Desktop.
Save anstarovoyt/3e96ac71dceef7157b66 to your computer and use it in GitHub Desktop.
typescript import/export
module Rx2 {
export interface A {}
}
declare module 'Rx' {
export = Rx2;
}
declare module 'Rx/2' {
export {A} from 'Rx';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment