mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
339 B
TypeScript
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;
|