UNPKG

@visulima/packem

Version:

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

17 lines (15 loc) 313 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 = errorFactory;