chore: exports

This commit is contained in:
cha0s 2021-02-06 02:28:31 -06:00
parent bac9c29643
commit 74cbad6e7d
2 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,7 @@ export {
setAnimation,
} from './animation-frame';
export {default as AnimationView} from './animation-view';
export {default as Lfo} from './lfo';
export {default as Lfo, LfoResult} from './lfo';
export * from './loop';
export {default as Ticker} from './ticker';
export {default as TimedIndex} from './timed-index';

View File

@ -1,5 +1,7 @@
import LfoResult from './result';
export {LfoResult};
export default function LfoMixin(Superclass) {
return class Lfo extends Superclass {