ngx-angora-css
Version:
Angora CSS is a library that provides a set of CSS classes to help you build modern web applications. It is based on the [Boostrap Expanded Features Library](https://github.com/LynxPardelle/bootstrap-expanded-features) and the [Bootstrap](https://getboots
19 lines (18 loc) • 461 B
TypeScript
export declare const manage_colors: {
pushColors(newColors: {
[key: string]: string;
}): void | {
errors: string[];
} | {
success: boolean;
message: string;
};
getColors(): {
[key: string]: string;
};
getColorsNames(): string[];
getColorValue(color: string): string;
updateColor(color: string, value: string): void;
deleteColor(color: string): void;
clearAllColors(): void;
};