Skip to content

Commit

Permalink
optimized imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoverson committed May 17, 2020
1 parent 32405a2 commit f8dbfd6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/refactor-plugin-common.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { RefactorSession } from ".";
import { ComputedMemberExpression, LiteralStringExpression, StaticMemberExpression, ComputedMemberAssignmentTarget, StaticMemberAssignmentTarget, ComputedPropertyName, StaticPropertyName, VariableDeclarator, IdentifierExpression, LiteralBooleanExpression, FunctionDeclaration, ClassDeclaration } from "shift-ast";
import debug from "debug";
import { ClassDeclaration, ComputedMemberAssignmentTarget, ComputedMemberExpression, ComputedPropertyName, FunctionDeclaration, IdentifierExpression, LiteralBooleanExpression, LiteralStringExpression, StaticMemberAssignmentTarget, StaticMemberExpression, StaticPropertyName, VariableDeclarator } from "shift-ast";
import { Declaration, Reference, Variable } from "shift-scope";
import { MemorableIdGenerator, IdGenerator } from "./id-generator";
import { default as isValid } from 'shift-validator';
import { SelectorOrNode } from "./types";
import { findNodes, isStatement, isLiteral, renameScope } from "./util";
import { IdGenerator, MemorableIdGenerator } from "./id-generator";
import { RefactorPlugin } from "./refactor-plugin";
import { SelectorOrNode } from "./types";
import { findNodes, isLiteral, isStatement, renameScope } from "./util";

declare module "." {
interface RefactorSession {
Expand Down

0 comments on commit f8dbfd6

Please sign in to comment.