Skip to content

Commit

Permalink
Export data types (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
gantunesr authored Mar 9, 2023
1 parent b191b59 commit a8574c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
type DetailedEncryptionResult = {
export type DetailedEncryptionResult = {
vault: string;
exportedKeyString: string;
};

type EncryptionResult = {
export type EncryptionResult = {
data: string;
iv: string;
salt?: string;
};

type DetailedDecryptResult = {
export type DetailedDecryptResult = {
exportedKeyString: string;
vault: unknown;
salt: string;
Expand Down

0 comments on commit a8574c4

Please sign in to comment.