@motionone/types
Advanced tools
Comparing version 10.6.2 to 10.7.0
{ | ||
"name": "@motionone/types", | ||
"version": "10.6.2", | ||
"version": "10.7.0", | ||
"description": "Shared types for the Motion One packages.", | ||
@@ -13,5 +13,5 @@ "license": "MIT", | ||
"build": "rm -rf lib dist types && tsc -p . && rollup -c", | ||
"dev": "rollup -c -w" | ||
"dev": "concurrently -c blue,red -n tsc,rollup --kill-others \"tsc --watch -p . --preserveWatchOutput\" \"rollup --c --watch --no-watch.clearScreen\"" | ||
}, | ||
"gitHead": "b776bc7edd104b5545d2204713f7fb94eba50b21" | ||
"gitHead": "d1842ead7b1320c511a4558527a6dec65b4f5d6e" | ||
} |
@@ -55,5 +55,12 @@ import { MotionValue } from "./MotionValue"; | ||
}; | ||
export declare type AnimationOptions = KeyframeOptions & PlaybackOptions & { | ||
export declare type DevToolsOptions = { | ||
record?: boolean; | ||
}; | ||
export declare type AnimationOptions = KeyframeOptions & PlaybackOptions & DevToolsOptions & { | ||
allowWebkitAcceleration?: boolean; | ||
}; | ||
export interface DevTools { | ||
record: (element: HTMLElement, valueName: string, keyframes: any, options: AnimationOptions) => void; | ||
isRecording: boolean; | ||
} | ||
//# sourceMappingURL=index.d.ts.map |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10436
134