unstated-enhancers
Version:
Unstated tools for state management
36 lines (35 loc) • 583 B
TypeScript
declare const colors: {
updated: {
color: string;
text: string;
};
added: {
color: string;
text: string;
};
deleted: {
color: string;
text: string;
};
title: {
color: string;
text: string;
};
prevState: {
color: string;
text: string;
};
action: {
color: string;
text: string;
};
nextState: {
color: string;
text: string;
};
error: {
color: string;
text: string;
};
};
export default colors;