Skip to content

Commit

Permalink
Add missing type of closeAriaLabel setAriaLabel method
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarcelino-fe committed Oct 2, 2023
1 parent 4eebf94 commit dff9319
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/OutSystemsUI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2894,7 +2894,7 @@ declare namespace OSFramework.OSUI.Patterns.Search {
IsNativeEnabled: boolean;
IsOpen: boolean;
enableNativeBehavior(): void;
setAriaLabel(openAriaLabel: string, closeAriaLabel: any): void;
setAriaLabel(openAriaLabel: string, closeAriaLabel: string): void;
}
}
declare namespace OSFramework.OSUI.Patterns.Search {
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/OSFramework/OSUI/Pattern/Search/ISearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ namespace OSFramework.OSUI.Patterns.Search {
*
* @memberof ISearch
*/
setAriaLabel(openAriaLabel: string, closeAriaLabel): void;
setAriaLabel(openAriaLabel: string, closeAriaLabel: string): void;
}
}

0 comments on commit dff9319

Please sign in to comment.