| 1 |
declare module 'gulp-rtlcss' { |
| 2 |
import { Transform } from 'stream' |
| 3 |
import { ConfigOptions } from 'rtlcss' |
| 4 |
export default function (config?: ConfigOptions): Transform |
| 5 |
} |
| 6 |
|
| 7 |
declare module 'gulp-remove-sourcemaps' { |
| 8 |
import { Transform } from 'stream' |
| 9 |
export default function (): Transform |
| 10 |
} |
| 11 |
|
| 12 |
declare module 'postcss-easy-import' { |
| 13 |
import { Plugin } from 'postcss' |
| 14 |
export default function (opts: { |
| 15 |
prefix: string | boolean |
| 16 |
extensions: string | string[] |
| 17 |
}): Plugin |
| 18 |
} |
| 19 |
|
| 20 |
declare module 'postcss-hexrgba' { |
| 21 |
import { Plugin } from 'postcss' |
| 22 |
export default function (): Plugin |
| 23 |
} |
| 24 |
|
| 25 |
declare module 'gulp-eslint' { |
| 26 |
import { Transform } from 'stream' |
| 27 |
export default gulpEslint |
| 28 |
|
| 29 |
const gulpEslint: { |
| 30 |
(): Transform |
| 31 |
format(formatter?: string, output?: WritableStream): Transform |
| 32 |
formatEach(formatter?: string, output?: WritableStream): Transform |
| 33 |
failAfterError(): Transform |
| 34 |
} |
| 35 |
} |
| 36 |
|
| 37 |
declare module 'gulp-phpcs' { |
| 38 |
import { Transform } from 'stream' |
| 39 |
const phpcs: { |
| 40 |
(options?: { |
| 41 |
bin?: string |
| 42 |
severity?: number |
| 43 |
warningSeverity?: number |
| 44 |
errorSeverity?: number |
| 45 |
standard?: string |
| 46 |
encoding?: string |
| 47 |
report?: string |
| 48 |
showSniffCode?: boolean |
| 49 |
sniffs?: string[] |
| 50 |
ignore?: string[] |
| 51 |
cwd?: string |
| 52 |
colors?: boolean |
| 53 |
}): Transform |
| 54 |
reporter(name: 'fail' | 'log' | 'file', options?: { |
| 55 |
failOnFirst?: boolean |
| 56 |
path?: string |
| 57 |
}): Transform |
| 58 |
} |
| 59 |
export default phpcs |
| 60 |
} |
| 61 |
|