enable transformValue to take a parameter

This commit is contained in:
Nicholas Pappagalo
2018-08-11 11:43:32 -07:00
parent b3387d6338
commit 9963d9aed6

View File

@@ -19,7 +19,7 @@ export interface LowLevelStylefunctionArguments {
cssProperty?: string;
key?: string;
getter?: () => any;
transformValue?: () => any;
transformValue?: (n: string|number) => any;
scale?: Array<string|number>;
}