PluginProbe
Code Snippets / 3.2.1
Code Snippets v3.2.1
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.d.ts

modules.d.ts in Code Snippets 3.2.1, at js/types/modules.d.ts

61 lines 1.4 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-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