Skip to content

Commit

Permalink
chore: add validations
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-deriv committed Mar 20, 2024
1 parent c2c0282 commit 7d84882
Show file tree
Hide file tree
Showing 4 changed files with 165 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ import * as AppIDConstants from "./app-id.constants";
import * as CurrencyConstants from "./currency.constants";
import * as LocalStorageConstants from "./localstorage.constants";
import * as URLConstants from "./url.constants";
import * as ValidationConstants from "./validation.constants";

export { AppIDConstants, CurrencyConstants, LocalStorageConstants, URLConstants };
export { AppIDConstants, CurrencyConstants, LocalStorageConstants, URLConstants, ValidationConstants };
1 change: 1 addition & 0 deletions src/constants/validation.constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const address_permitted_special_characters_message = ". , ' : ; ( ) ° @ # / -";
3 changes: 3 additions & 0 deletions src/validations/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import * as Validations from "./validations";

export { Validations };
Loading

0 comments on commit 7d84882

Please sign in to comment.