UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

13 lines (12 loc) 307 B
/** * LaTeX directive * @enum {string} */ export const Directive = { BEGIN: "BEGIN", // begin something END: "END" // end something }; export type Directive = keyof typeof Directive; export function isDirective(x: any): x is Directive { return Directive.hasOwnProperty(x); }