src/app/model/IColor.ts
| colorDark |
colorDark: |
Type : string
|
|
Defined in src/app/model/IColor.ts:6
|
| colorLight |
colorLight: |
Type : string
|
|
Defined in src/app/model/IColor.ts:4
|
| colorMedium |
colorMedium: |
Type : string
|
|
Defined in src/app/model/IColor.ts:5
|
| component |
component: |
Type : string
|
|
Defined in src/app/model/IColor.ts:7
|
| paramExist |
paramExist: |
Type : boolean
|
|
Defined in src/app/model/IColor.ts:3
|
| paramFrom |
paramFrom: |
Type : string
|
|
Defined in src/app/model/IColor.ts:2
|
export interface IColor {
paramFrom: string;
paramExist: boolean;
colorLight: string;
colorMedium: string;
colorDark: string;
component: string;
}
export interface ISubColor {
color: string;
component: string;
}