Module system scaicoreCopy 1 2 3 4 5 6 7 8 9 10 11 12// Importing import { Invoice, LineItem } from "company/types" import { validate_vat } from "scailabs/eu-utils@1.0" import { CRM as SalesforceCRM } from "company/salesforce" // Importing Core interfaces (for typed @core_call and @on) import { BillingSpecialist } from "company/billing-specialist" // Visibility pub @flow public_flow { ... } // Exported @flow internal_flow { ... } // Private to module @internal @flow helper_flow { ... } // Private + no entity key required