UNPKG

@posguru/finance-core

Version:

Universal JavaScript library for finance-related math functions, usable in both Node.js (Express) and React applications.

21 lines (20 loc) 656 B
export declare const partnerTypes: { PARTNER: string; USER: string; LOCATION: string; DEVICE: string; VALUES: readonly ["PARTNER", "USER", "LOCATION", "DEVICE"]; }; export type PartnerType = (typeof partnerTypes.VALUES)[number]; export declare const partnerModes: { CLOUDE_KITCHEN: string; RESTAURANT: string; VALUES: readonly ["CLOUDE_KITCHEN", "RESTAURANT"]; }; export type PartnerMode = (typeof partnerModes.VALUES)[number]; export declare const profileTypes: { readonly PRIVATE: "PRIVATE"; readonly STYLE: "STYLE"; readonly APPLICATION: "APPLICATION"; }; export type ProfileType = keyof typeof profileTypes;