PluginProbe
Code Snippets / 3.6.3
Code Snippets v3.6.3
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / js / types / modules / gulp.ts

gulp.ts in Code Snippets 3.6.3, at js/types/modules/gulp.ts

49 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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-phpcs' {
26 import { Transform } from 'stream'
27 const phpcs: {
28 (options?: {
29 bin?: string
30 severity?: number
31 warningSeverity?: number
32 errorSeverity?: number
33 standard?: string
34 encoding?: string
35 report?: string
36 showSniffCode?: boolean
37 sniffs?: string[]
38 ignore?: string[]
39 cwd?: string
40 colors?: boolean
41 }): Transform
42 reporter(name: 'fail' | 'log' | 'file', options?: {
43 failOnFirst?: boolean
44 path?: string
45 }): Transform
46 }
47 export default phpcs
48 }
49