Skip to content

Commit 101de8a

Browse files
authored
Merge pull request #25 from shukob/feature/fix_typescript_def
Added return type on typescript defs for enc/dec of Base64
2 parents 7be2e97 + d470288 commit 101de8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dist/secure-ls.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ declare class SecureLS {
3535
declare namespace SecureLS{
3636
interface Base64 {
3737
_keyStr: string;
38-
encode(e: string);
39-
decode(e: string);
38+
encode(e: string): string;
39+
decode(e: string): string;
4040
}
4141
}

0 commit comments

Comments
 (0)