Skip to content

Commit

Permalink
fix: export require types from MessageEventArg
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo committed Sep 13, 2024
1 parent c175b31 commit c5ab1f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/edge-agent/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ export class PrismOnboardingInvitation implements InvitationInterface {
}


type MessageEventArg = Message[];
type ConnectionEventArg = DIDPair;
type RevokeEventArg = Credential;
export type MessageEventArg = Message[];
export type ConnectionEventArg = DIDPair;
export type RevokeEventArg = Credential;
export type EventCallback = (arg: MessageEventArg | ConnectionEventArg | RevokeEventArg) => void;
export type EventPickupCallback = (messages: {
attachmentId: string;
Expand Down

0 comments on commit c5ab1f2

Please sign in to comment.