Skip to content

Commit

Permalink
fix: remove yarn lock and wrong types
Browse files Browse the repository at this point in the history
  • Loading branch information
theo committed Dec 7, 2021
1 parent f4a8156 commit 67906d7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1,450 deletions.
2 changes: 1 addition & 1 deletion src/transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { decryptData, encryptData } from './crypto';
export class EncryptionTransformer implements ValueTransformer {
constructor(private options: EncryptionOptions) {}

public from(value?: string | null | object): string | undefined {
public from(value?: string | null): string | undefined {
if (!value) {
return;
}
Expand Down
Loading

0 comments on commit 67906d7

Please sign in to comment.