Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
autoprefixer /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
hacks
[ DIR ]
drwxr-xr-x
2026-06-24 16:16
at-rule.js
702
B
-rw-r--r--
2026-06-24 16:16
autoprefixer.d.ts
2.39
KB
-rw-r--r--
2026-06-24 16:16
autoprefixer.js
4.08
KB
-rw-r--r--
2026-06-24 16:16
brackets.js
849
B
-rw-r--r--
2026-06-24 16:16
browsers.js
1.73
KB
-rw-r--r--
2026-06-24 16:16
declaration.js
3.97
KB
-rw-r--r--
2026-06-24 16:16
info.js
3.09
KB
-rw-r--r--
2026-06-24 16:16
old-selector.js
1.36
KB
-rw-r--r--
2026-06-24 16:16
old-value.js
463
B
-rw-r--r--
2026-06-24 16:16
prefixer.js
3.05
KB
-rw-r--r--
2026-06-24 16:16
prefixes.js
12.79
KB
-rw-r--r--
2026-06-24 16:16
processor.js
21.03
KB
-rw-r--r--
2026-06-24 16:16
resolution.js
2.25
KB
-rw-r--r--
2026-06-24 16:16
selector.js
3.15
KB
-rw-r--r--
2026-06-24 16:16
supports.js
6.28
KB
-rw-r--r--
2026-06-24 16:16
transition.js
7.98
KB
-rw-r--r--
2026-06-24 16:16
utils.js
1.97
KB
-rw-r--r--
2026-06-24 16:16
value.js
2.51
KB
-rw-r--r--
2026-06-24 16:16
vendor.js
206
B
-rw-r--r--
2026-06-24 16:16
Save
Rename
import { Stats } from 'browserslist' import { Plugin } from 'postcss' declare function autoprefixer<T extends string[]>( ...args: [...T, autoprefixer.Options] ): Plugin & autoprefixer.ExportedAPI declare function autoprefixer( browsers: string[], options?: autoprefixer.Options ): Plugin & autoprefixer.ExportedAPI declare function autoprefixer( options?: autoprefixer.Options ): Plugin & autoprefixer.ExportedAPI declare namespace autoprefixer { type GridValue = 'autoplace' | 'no-autoplace' interface Options { /** environment for `Browserslist` */ env?: string /** should Autoprefixer use Visual Cascade, if CSS is uncompressed */ cascade?: boolean /** should Autoprefixer add prefixes. */ add?: boolean /** should Autoprefixer [remove outdated] prefixes */ remove?: boolean /** should Autoprefixer add prefixes for @supports parameters. */ supports?: boolean /** should Autoprefixer add prefixes for flexbox properties */ flexbox?: boolean | 'no-2009' /** should Autoprefixer add IE 10-11 prefixes for Grid Layout properties */ grid?: boolean | GridValue /** custom usage statistics for > 10% in my stats browsers query */ stats?: Stats /** * list of queries for target browsers. * Try to not use it. * The best practice is to use `.browserslistrc` config or `browserslist` key in `package.json` * to share target browsers with Babel, ESLint and Stylelint */ overrideBrowserslist?: string | string[] /** do not raise error on unknown browser version in `Browserslist` config. */ ignoreUnknownVersions?: boolean } interface ExportedAPI { /** Autoprefixer data */ data: { browsers: { [browser: string]: object | undefined } prefixes: { [prefixName: string]: object | undefined } } /** Autoprefixer default browsers */ defaults: string[] /** Inspect with default Autoprefixer */ info(options?: { from?: string }): string options: Options browsers: string | string[] } /** Autoprefixer data */ let data: ExportedAPI['data'] /** Autoprefixer default browsers */ let defaults: ExportedAPI['defaults'] /** Inspect with default Autoprefixer */ let info: ExportedAPI['info'] let postcss: true } declare global { namespace NodeJS { interface ProcessEnv { AUTOPREFIXER_GRID?: autoprefixer.GridValue } } } export = autoprefixer