UNPKG

@lottiefiles/relottie-parse

Version:
17 lines (15 loc) 359 B
/** * 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 };