create hyperlink style

This commit is contained in:
Ivan Lopez
2018-05-06 22:23:04 -05:00
parent ac40e13e33
commit 1fd222abea
2 changed files with 44 additions and 1 deletions

View File

@ -9,6 +9,7 @@ import {
Heading4Style,
Heading5Style,
Heading6Style,
HyperlinkStyle,
ListParagraph,
TitleStyle,
} from "./style";
@ -54,6 +55,8 @@ export class DefaultStylesFactory {
// listParagraph.addParagraphProperty();
styles.push(listParagraph);
const hyperLinkStyle = new HyperlinkStyle();
styles.push(hyperLinkStyle);
return styles;
}
}