streamdeck-typescript
Version:
This library will help you build elgato stream deck plugins in typescript
12 lines (11 loc) • 382 B
text/typescript
export interface TitleParameters {
fontFamily: string;
fontSize: number;
fontStyle: string;
fontUnderline: boolean;
showTitle: boolean;
titleAlignment: 'top' | 'bottom' | 'middle';
titleColor: string;
// No Regex testing for hex colors in types :c And no. I will not define all possible hex
// codes from #000 to #ffffff in lower and uppercase
}