Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Dec 30, 2015
1 parent 40c6085 commit 0caf0e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gulp-csso/gulp-csso-tests.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/// <reference path="gulp-csso.d.ts" />
/// <reference path="../gulp/gulp.d.ts" />

import gulp = require('gulp');
import csso = require('gulp-csso');
import * as gulp from 'gulp';
import * as csso from 'gulp-csso';

gulp.task('default', () =>
gulp.src('./main.css')
Expand Down
2 changes: 1 addition & 1 deletion gulp-csso/gulp-csso.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

declare module 'gulp-csso' {
function csso(structureMinimization?: boolean): NodeJS.ReadWriteStream;

namespace csso {}
export = csso;
}

0 comments on commit 0caf0e9

Please sign in to comment.