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) • 512 B
TypeScript
/**
* Errors thrown by the {@link Tournament} class
*
* Usually won't halt a tournament, but indicate something was uncompleted as a result of an error
*/
export declare class TournamentError extends Error {
constructor(m: string);
}
/**
* Errors thrown by the {@link Tournament} class
*
* Usually won't halt a tournament, but indicate something was uncompleted as a result of an error
*/
export declare class TournamentPlayerDoesNotExistError extends TournamentError {
constructor(m: string);
}