unstated-enhancers
Version:
Unstated tools for state management
37 lines (35 loc) • 611 B
text/typescript
interface Color {
updated?: {
color: string,
text: string
},
added?: {
color: string,
text: string
},
deleted?: {
color: string,
text: string
},
title?: {
color: 'inherit',
text: string
},
prevState?: {
color: string,
text: string
},
action?: {
color: string,
text: string
},
nextState?: {
color: string,
text: string
},
error?: {
color: string,
text: string
}
}
export default Color