94189a72c3
* refactor(deps): added tslint, cleanup, and activationEvents modified * refactor(lint): linting... * refactor(changelog): changelo method refactor (should be tested) * refactor(theme-icons): linting and small refactor * refactor(accents-setter): linting and small refactor * chore(travis): added travis file
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
export interface IDefaults {
|
|
accents: IAccents;
|
|
accentableIcons: string[];
|
|
changelog: IChangelog;
|
|
icons: IDefaultsThemeIcons;
|
|
themeVariants: IDefaultsThemeVariant;
|
|
themeVariantsColours: IDefaultsThemeVariant;
|
|
themeVariantsUITheme: IDefaultsThemeVariant;
|
|
variantsIcons: string[];
|
|
[Symbol.iterator](): IterableIterator<IDefaults>;
|
|
}
|
|
|
|
export interface IAccents {
|
|
teal: string;
|
|
[index: string]: string;
|
|
}
|
|
|
|
export interface IChangelog {
|
|
lastversion: string;
|
|
[Symbol.iterator](): IterableIterator<IChangelog>;
|
|
}
|
|
|
|
export interface IDefaultsThemeIcons {
|
|
theme: {
|
|
iconDefinitions: {
|
|
_folder_open: {
|
|
iconPath: string;
|
|
};
|
|
_folder_open_build: {
|
|
iconPath: string;
|
|
};
|
|
_folder_dark: {
|
|
iconPath: string;
|
|
};
|
|
_folder_dark_build: {
|
|
iconPath: string;
|
|
};
|
|
_folder_light_build: {
|
|
iconPath: string;
|
|
};
|
|
_folder_light: {
|
|
iconPath: string;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|
|
export interface IDefaultsThemeVariant {
|
|
[index: string]: string;
|
|
Darker: string;
|
|
DarkerHighContrast: string;
|
|
Default: string;
|
|
DefaultHighContrast: string;
|
|
Light: string;
|
|
LightHighContrast: string;
|
|
PalenightHighContrast: string;
|
|
}
|