-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add convenience methods for icon registry for blazor. Co-authored-by: Galina Edinakova <gedinakova@infragistics.com>
- Loading branch information
1 parent
e213af0
commit 64e4f05
Showing
3 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* Indicates a member should be included in the Blazor API even if non-public. | ||
* @returns a function that does nothing, given that this decorator is for static analysis only. | ||
*/ | ||
export function blazorInclude() { | ||
return (_descriptor: any, _memberName: string): any => {}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export * from './watch'; | ||
export * from './alternateName'; | ||
export * from './blazorSuppress'; | ||
export * from './blazorInclude'; | ||
export * from './blazorTwoWayBind'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters