UNPKG

@iota-big3/layer-1-finance

Version:

Layer 1 Finance conventions for School OS - Budget patterns, billing automation, and financial workflows

15 lines 431 B
/** * Type definitions for Layer 1 Finance conventions */ export interface ConventionSet { name: string; tribe: string; conventions: Record<string, any>; philosophyImpact: PhilosophyImpact; metrics: Record<string, string | number>; } export interface PhilosophyImpact { [key: string]: string | number | boolean; } export { PhilosophyMetrics } from '@iota-big3/layer-0'; //# sourceMappingURL=types.d.ts.map