UNPKG

dimensions-ai

Version:

A generalized AI Competition framework that allows you to create any competition you want in any language you want with no hassle.

17 lines (16 loc) 551 B
/** * Exports all That is Needed for the Dimensions Framework */ import { NanoID } from './Dimension'; export * from './Station'; export { create, Dimension as DimensionType, DatabaseType } from './Dimension'; export declare type nanoid = NanoID; export * from './Plugin'; export * from './Logger'; export * from './Design'; export * from './Agent'; export * from './Tournament'; export * from './Match'; export * from './MatchEngine'; export * from './DimensionError/wrapper'; export { MatchError, FatalError, MatchWarn } from './DimensionError/';