UNPKG

@visulima/packem

Version:

A fast and modern bundler for Node.js and TypeScript.

16 lines (15 loc) 318 B
type SassError = { column?: number; id: string; line?: number; } & Error; declare const errorFactory: (error: { formatted?: string; span?: { start: { column: number; line: number; }; }; } & Error, file: string) => SassError; export default errorFactory;