Skip to content

Commit

Permalink
refactor: migrate files to typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
pac-guerreiro committed Jan 24, 2024
1 parent 2cf661c commit 8f1e5a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
* get the overflow of list view in GooglePlacesAutocomplete.
* @returns {Object} styles for list view.
* @returns styles for the list view.
*/
function getListViewOverflow() {
function getListViewOverflow(): {overflow: string} {
return {
overflow: 'hidden',
};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
* get the overflow of list view in GooglePlacesAutocomplete.
* @returns {Object} styles for the list view.
* @returns styles for the list view.
*/
function getListViewOverflow() {
function getListViewOverflow(): {overflow: string} {
return {
overflow: 'auto',
};
Expand Down

0 comments on commit 8f1e5a1

Please sign in to comment.