@agendize/vue-settings
Version:
Vue agendize's settings component
12 lines (11 loc) • 439 B
TypeScript
import { Locale } from "@agendize/az-i18n";
declare function pushDefaultColors(colors: {
label: string;
value: string;
}[], i18n: any): void;
declare function getsDaysByLocale(locale: Locale): string[];
/***
* get a positive Modulo (JS always return negative number if the first operand of modulo is negative)
*/
declare function mod(a: number, b: number): number;
export { pushDefaultColors, getsDaysByLocale, mod };