Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
refactor: import types
Browse files Browse the repository at this point in the history
  • Loading branch information
amtrack committed Feb 12, 2021
1 parent df6ce72 commit ec3dcd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/auth-url/export.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { core, SfdxCommand } from '@salesforce/command';
import { AnyJson } from '@salesforce/ts-types';
import type { AnyJson } from '@salesforce/ts-types';
import { promisify } from 'util';
import child_process = require('child_process');
const exec = promisify(child_process.exec);
Expand Down
2 changes: 1 addition & 1 deletion src/commands/auth-url/import.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { core, flags, SfdxCommand } from '@salesforce/command';
import { AnyJson } from '@salesforce/ts-types';
import type { AnyJson } from '@salesforce/ts-types';
import { promises as fsPromises } from 'fs';
import { promisify } from 'util';
import child_process = require('child_process');
Expand Down

0 comments on commit ec3dcd9

Please sign in to comment.