8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
export interface ISettings {
|
|
background_color: string;
|
|
text_color: string;
|
|
font_size: number;
|
|
font: string;
|
|
line_spacing: number;
|
|
}
|