blakeembrey/tslint-config-standard

Is it possible to satisfy the no-duplicate-imports rule with type imports?

Open

#41 opened on Oct 30, 2017

View on GitHub
 (8 comments) (1 reaction) (0 assignees)JavaScript (33 forks)github user discovery
help wanted

Repository metrics

Stars
 (351 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

Is it possible to import from both a node_module and type in a single import statement?

import * as React from 'react'; // import from module
import { StatelessComponent } from 'react'; // import from type

Contributor guide