add link area support for text component (#4103)

* add link area support for text component

* add comment for localizable resources

* address comments
This commit is contained in:
Alan Ren
2019-02-22 12:53:09 -08:00
committed by GitHub
parent 636bdbd12c
commit 046dee7389
4 changed files with 38 additions and 11 deletions

View File

@@ -543,6 +543,12 @@ declare module 'sqlops' {
export interface TextComponentProperties {
value?: string;
links?: LinkArea[];
}
export interface LinkArea {
text: string;
url: string;
}
export interface HyperlinkComponentProperties extends ComponentProperties {