/** * @param {Site} site * @param {string} msg * @returns {CompilerError} */ export function makeReferenceError(site: Site, msg: string): CompilerError; /** * @param {Site} site * @param {string} msg * @returns {CompilerError} */ export function makeSyntaxError(site: Site, msg: string): CompilerError; /** * @param {Site} site * @param {string} msg * @returns {CompilerError} */ export function makeTypeError(site: Site, msg: string): CompilerError; /** * @param {Error} err * @returns {err is CompilerError} */ export function isCompilerError(err: Error): err is CompilerError; import type { Site } from "../index.js"; import type { CompilerError } from "../index.js"; //# sourceMappingURL=CompilerError.d.ts.map