Skip to content

Commit

Permalink
Update explicit type imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrizagidulin committed Jul 15, 2023
1 parent 7ca2c7a commit b5a401f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions src/ProofSet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import { serializeError } from 'serialize-error'

import { constants } from './constants'
import {
DocumentLoader,
Proof,
VerificationMethod,
VerificationResult
type DocumentLoader,
type Proof,
type VerificationMethod,
type VerificationResult
} from './types'
import { LinkedDataProofSuite } from './suites/LinkedDataProofSuite'
import { ProofPurpose } from './purposes/ProofPurpose'
import { type LinkedDataProofSuite } from './suites/LinkedDataProofSuite'
import { type ProofPurpose } from './purposes/ProofPurpose'
import { VerificationError } from './VerificationError'

export class ProofSet {
Expand Down
6 changes: 3 additions & 3 deletions src/jsonld-signatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*/
import { ProofSet } from './ProofSet'
import { VerificationError } from './VerificationError'
import { ProofPurpose } from './purposes/ProofPurpose'
import { DocumentLoader, VerificationResult } from './types'
import { LinkedDataSignature } from './suites/LinkedDataSignature'
import { type ProofPurpose } from './purposes/ProofPurpose'
import { type DocumentLoader, type VerificationResult } from './types'
import { type LinkedDataSignature } from './suites/LinkedDataSignature'

/**
* Cryptographically signs the provided document by adding a `proof` section,
Expand Down

0 comments on commit b5a401f

Please sign in to comment.