@lottiefiles/relottie-parse
Version:
Parse Lottie JSON format to LAST
17 lines (15 loc) • 359 B
TypeScript
/**
* Copyright 2023 Design Barn Inc.
*/
interface ParseOptions {
/**
* Include 'position' prop into nodes (default, true)
*/
position: boolean;
/**
* Include 'valueType' prop into nodes (default, true)
*/
valueType: boolean;
}
declare const DEFAULT_OPTIONS: ParseOptions;
export { DEFAULT_OPTIONS, type ParseOptions };