UNPKG

wgo

Version:

JavaScript library for game of Go

11 lines (10 loc) 277 B
import SGFParser from './SGFParser'; /** * Class for syntax errors in SGF string. * @ extends Error */ export declare class SGFSyntaxError extends Error { __proto__: Error; constructor(message: string, parser?: SGFParser); } export default SGFSyntaxError;