fix(types): improve TypeScript strictness compatibility and modernize test exports
This commit is contained in:
@@ -89,7 +89,7 @@ const universalBase64 = {
|
||||
*/
|
||||
export class Base64 {
|
||||
private refString: string;
|
||||
constructor(inputStringArg, typeArg: TStringInputType) {
|
||||
constructor(inputStringArg: string, typeArg: TStringInputType) {
|
||||
switch (typeArg) {
|
||||
case 'string': // easiest case
|
||||
this.refString = inputStringArg;
|
||||
|
||||
Reference in New Issue
Block a user