frontend/.pnpm-store/v3/files/8f/f9391b289601ebd47896313a3070c0d15976d12d19cbf5824dcc14f7f05df577317ff911739c9af2b6dc8a62bf2cc38f6efac3a949e38449168f507e1e9f27

12 lines
397 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.throwTypescriptError = exports.throwError = void 0;
const throwError = (msg) => {
throw new Error(`[svelte-preprocess] ${msg}`);
};
exports.throwError = throwError;
const throwTypescriptError = () => {
exports.throwError(`Encountered type error`);
};
exports.throwTypescriptError = throwTypescriptError;