UNPKG

business-as-code

Version:

Primitives for expressing business logic and processes as code

36 lines 806 B
/** * Business Entity Types (Nouns) * * Core business entities: Business, Vision, Mission, Values. * * @packageDocumentation */ import type { Noun } from 'ai-database'; /** * Business entity * * Represents a company, startup, or business unit. */ export declare const Business: Noun; /** * Vision entity * * Represents a long-term vision statement with success indicators. */ export declare const Vision: Noun; /** * Value entity * * Represents a core organizational value. */ export declare const Value: Noun; export declare const BusinessEntities: { Business: Noun; Vision: Noun; Value: Noun; }; export declare const BusinessCategories: { readonly core: readonly ["Business"]; readonly purpose: readonly ["Vision", "Value"]; }; //# sourceMappingURL=business.d.ts.map