UNPKG

@visulima/packem

Version:

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

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