src/app/model/IColor.ts
color |
color: |
Type : string
|
Defined in src/app/model/IColor.ts:11
|
component |
component: |
Type : string
|
Defined in src/app/model/IColor.ts:12
|
export interface IColor {
paramFrom: string;
paramExist: boolean;
colorLight: string;
colorMedium: string;
colorDark: string;
component: string;
}
export interface ISubColor {
color: string;
component: string;
}