Skip to content

Commit

Permalink
Add font style bit flags to typescript definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
computerquip-streamlabs committed Jan 17, 2018
1 parent 8d681f2 commit d6be382
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions js/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ export const enum EDeinterlaceMode {
Yadif2X
}

export const enum EFontStyle {
Bold = (1<<0),
Italic = (1<<1),
Underline = (1<<2),
Strikeout = (1<<3),
}

/**
* Enumeration describing the type of a property
*/
Expand Down

0 comments on commit d6be382

Please sign in to comment.