core-native
Version:
A lightweight framework based on React Native + Redux + Redux Saga, in strict TypeScript.
11 lines • 316 B
JavaScript
import {} from "../module";
/**
* For *onTick() action only, to specify to tick interval in second.
*/
export function Interval(second) {
return function (target, propertyKey, descriptor) {
descriptor.value.tickInterval = second;
return descriptor;
};
}
//# sourceMappingURL=Interval.js.map