UNPKG

webcompiler

Version:

Lint, type-check, compile, package and gzip JavaScript (ES6 + Flow static types + JSX), for the browser as well as NodeJS; lint, compile, auto-prefix, minify and gzip SASS.

10 lines (6 loc) 269 B
/* @flow */ import type {NodeSassError} from '../src/typedef'; type NodeSassCallback = (error: ?NodeSassError, result: {css: string; map: string;}) => void; declare module 'node-sass' { declare function render(options: Object, callback: NodeSassCallback): void; }