DefinitelyTyped/types/css-to-style/index.d.ts
2018-07-15 12:47:55 -07:00

10 lines
339 B
TypeScript

// Type definitions for css-to-style 1.2
// Project: https://github.com/jacobbuck/css-to-style
// Definitions by: Ben Grynhaus <https://github.com/bengry>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
declare function toStyle(cssText: string): CSSStyleDeclaration;
export default toStyle;