UNPKG

266 BTypeScriptView Raw
1import type * as src from './source/api';
2export interface GlimmerSyntaxError extends Error {
3 location: src.SourceSpan | null;
4 code: string | null;
5}
6export declare function generateSyntaxError(message: string, location: src.SourceSpan): GlimmerSyntaxError;