| 55 | } |
| 56 | |
| 57 | interface ExportedAPI { |
| 58 | /** Autoprefixer data */ |
| 59 | data: { |
| 60 | browsers: { [browser: string]: object | undefined } |
| 61 | prefixes: { [prefixName: string]: object | undefined } |
| 62 | } |
| 63 | |
| 64 | /** Autoprefixer default browsers */ |
| 65 | defaults: string[] |
| 66 | |
| 67 | /** Inspect with default Autoprefixer */ |
| 68 | info(options?: { from?: string }): string |
| 69 | |
| 70 | options: Options |
| 71 | |
| 72 | browsers: string | string[] |
| 73 | } |
| 74 | |
| 75 | /** Autoprefixer data */ |
| 76 | let data: ExportedAPI['data'] |
no outgoing calls
no test coverage detected
searching dependent graphs…