@glint/core
Version:
A CLI for performing typechecking on Glimmer templates
8 lines (7 loc) • 307 B
TypeScript
import type * as ts from 'typescript';
export declare type Diagnostic = ts.Diagnostic & {
isGlintTransformDiagnostic?: boolean;
isContentTagError?: boolean;
};
export { rewriteDiagnostic } from './rewrite-diagnostic.js';
export { createTransformDiagnostic } from './create-transform-diagnostic.js';