Files
vaquant/src/models/IColor.ts
2019-10-25 19:37:28 +02:00

8 lines
172 B
TypeScript

export default interface IColor {
label: string | null
value: string | null
darkValue?: string | null
lightValue?: string | null
constrastColor?: string | null
}