mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
import toStyle from "css-to-style";
|
|
|
|
toStyle(); // $ExpectError
|
|
|
|
toStyle({}); // $ExpectError
|
|
|
|
toStyle(1); // $ExpectError
|
|
|
|
toStyle(''); // $ExpectType CSSStyleDeclaration
|