File indexing completed on 2025-01-19 03:59:59

0001 import { value_to_lottie, value_from_lottie, LottieObject } from '../base.js';
0002 
0003 /*An enumeration.
0004 */
0005 export const TestBased = Object.freeze({
0006     Characters: 1,
0007     CharacterExcludingSpaces: 2,
0008     Words: 3,
0009     Lines: 4,
0010 });
0011 /*An enumeration.
0012 */
0013 export const TextGrouping = Object.freeze({
0014     Characters: 1,
0015     Word: 2,
0016     Line: 3,
0017     All: 4,
0018 });
0019 /*An enumeration.
0020 */
0021 export const TextShape = Object.freeze({
0022     Square: 1,
0023     RampUp: 2,
0024     RampDown: 3,
0025     Triangle: 4,
0026     Round: 5,
0027     Smooth: 6,
0028 });