Files
DefinitelyTyped/types/inline-style-prefixer/inline-style-prefixer-tests.ts
Andrej Hazucha 0141e9af8f Added initial types for inline-style-prefixer (#18413)
* Added initial types for inline-style-prefixer

https://github.com/rofrischmann/inline-style-prefixer

* [inline-style-prefixer] fix tslint issues

* [inline-style-prefixer] using export =

* [inline-style-prefixer] fixed test
2017-07-26 09:08:17 -07:00

9 lines
197 B
TypeScript

import Prefixer = require('inline-style-prefixer');
const prefixer = new Prefixer();
const prefixed = prefixer.prefix({
fontSize: '16',
flexDirection: 'column'
} as CSSStyleDeclaration);