kute.js/src/core/internals.js

18 lines
330 B
JavaScript
Raw Normal View History

import add from './add';
import remove from './remove';
import getAll from './getAll';
import removeAll from './removeAll';
import { stop } from './render';
import linkInterpolation from './linkInterpolation';
const internals = {
add,
remove,
getAll,
removeAll,
stop,
linkInterpolation,
};
export default internals;