Files
DefinitelyTyped/autoprefixer/autoprefixer-tests.ts
Armando Meziat c12c733253 Added autoprefixer definitions (#14956)
* Added autoprefixer definitions

* Added package.json
2017-03-09 22:26:02 -08:00

18 lines
344 B
TypeScript

import * as autopref from 'autoprefixer';
const ap: autopref.Transformer = autopref({
browsers: ['> 5%', 'last 2 versions'],
env: '',
cascade: true,
add: true,
remove: true,
supports: true,
flexbox: true,
grid: true,
stats: {},
});
const ap2: autopref.Transformer = autopref({
flexbox: 'no-2009',
});
const info: string = ap.info();