Giter Club home page Giter Club logo

Comments (3)

pmneo avatar pmneo commented on July 29, 2024

Adding namespace support is very tricky, because this requires an advanced parsing of the source files.
Besides that, please provide a sample project with an expectation example.

from ts-importer.

pmneo avatar pmneo commented on July 29, 2024

No sample, no further actions.

from ts-importer.

micnic avatar micnic commented on July 29, 2024

Hello @pmneo, I have the following usecase

I use React for a TS project and while minifying the expressions React.createElement is quite long, I created first a class named R to include some some shortcuts to the React methods and classes, but then I needed to use types and had to add a namespace instead of the class to be able to export types, example of the namespace:

import * as React from 'react';
import * as ReactDOM from 'react-dom';

export namespace R {

    export type Element = React.ReactElement<any>;
    export type MouseEvent = React.MouseEvent<any>;
    export type TouchEvent = React.TouchEvent<any>;

    export const clone = React.cloneElement;
    export const create = React.createElement;
    export const find = ReactDOM.findDOMNode;
    export const render = ReactDOM.render;
    export const unmount = ReactDOM.unmountComponentAtNode;

    export const Component = class <P, S> extends React.PureComponent<P, S> { };
    export const Stateless = class <P> extends R.Component<P, null> { };
    export const Base = class extends R.Stateless<null> { };
}

from ts-importer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.