xe-utils-es
Version:
JavaScript 函数库、工具类
22 lines (21 loc) • 582 B
TypeScript
import noop from './noop';
import property from './property';
import bind from './bind';
import once from './once';
import after from './after';
import before from './before';
import throttle from './throttle';
import debounce from './debounce';
import delay from './delay';
declare const functionExports: {
noop: typeof noop;
property: typeof property;
bind: typeof bind;
once: typeof once;
after: typeof after;
before: typeof before;
throttle: typeof throttle;
debounce: typeof debounce;
delay: typeof delay;
};
export default functionExports;