7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
/**
|
|
* DOMAIN LAYER — Business constants (rules that could change by policy, not by framework)
|
|
*/
|
|
|
|
export const FREE_DELIVERY_THRESHOLD_SEK = 500;
|
|
export const STANDARD_DELIVERY_FEE_SEK = 49;
|
|
export const DEMO_PASSWORD = 'demo123'; |