charmlog
Version:
Library to improve logging
32 lines • 919 B
TypeScript
interface SettingsData {
color: string;
backgroundColor: string;
style: string;
fontWeight: string;
textDecoration: string;
}
declare class PrivateSettings {
get color(): string;
set color(hexColor: string);
get backgroundColor(): string;
set backgroundColor(backgroundColor: string);
get style(): string;
set style(style: string);
get fontWeight(): string;
set fontWeight(weight: string);
get textDecoration(): string;
set textDecoration(style: string);
setTextDecorationNone(): void;
setTextDecorationUnderline(): void;
setTextDecorationLineThrough(): void;
setFontWeightNormal(): void;
setFontWeightBold(): void;
setStyleNormal(): void;
setStyleItalic(): void;
getAll(): SettingsData;
reset(): void;
}
declare const settings: PrivateSettings;
export default settings;
//# sourceMappingURL=settings.d.ts.map