Skip to content

Commit

Permalink
fix: absolute imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shuffledex committed Feb 11, 2020
1 parent 2e573d2 commit da66e0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/entities/Identity.ts
@@ -1,6 +1,6 @@
import { Entity } from './Entity';
import { serialize, unserialize } from '../../utils';
import { Context } from '../../Context';
import { serialize, unserialize } from '~/utils';
import { Context } from '~/Context';
import { Balance } from '@polymathnetwork/polkadot/types/interfaces';

/**
Expand All @@ -13,7 +13,7 @@ export interface UniqueIdentifiers {
/**
* Constructor parameters
*/
export type Params = UniqueIdentifiers
export type Params = UniqueIdentifiers;

function isUniqueIdentifiers(identifier: any): identifier is UniqueIdentifiers {
const { did } = identifier;
Expand Down

0 comments on commit da66e0d

Please sign in to comment.