Searched refs:mAnim (Results 1 – 1 of 1) sorted by relevance
699 const mAnim = CK.MakeManagedAnimation('other json', { // $ExpectType ManagedSkottieAnimation constant702 mAnim.setColor('slider', CK.WHITE);703 mAnim.setOpacity('slider', 0.8);704 const e = mAnim.getMarkers(); // $ExpectType object[]705 const f = mAnim.getColorProps(); // $ExpectType ColorProperty[]706 const g = mAnim.getOpacityProps(); // $ExpectType OpacityProperty[]707 const h = mAnim.getTextProps(); // $ExpectType TextProperty[]709 const i = mAnim.setColor('foo', CK.RED); // $ExpectType boolean710 const j = mAnim.setOpacity('foo', 0.5); // $ExpectType boolean711 const k = mAnim.setText('foo', 'bar', 12); // $ExpectType boolean