We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 837637b + 0b8f75f commit 8a6b50fCopy full SHA for 8a6b50f
index.d.ts
@@ -0,0 +1,8 @@
1
+export interface Style {
2
+ [key: string]: string | number | Style;
3
+}
4
+
5
+export function getPropertyName(name: string): string;
6
+export function getStylesForProperty(name: string, value: string, allowShorthand?: boolean): Style;
7
8
+export default function transform(css: Array<[string, string]>, shorthandBlacklist?: string[]): Style;
0 commit comments