timered-counter
Version:
Make the value change more vivid and natural
15 lines (14 loc) • 690 B
TypeScript
import type { Plugin } from 'vue';
import { TimeredCounterNumber } from './timered-counter-number.js';
import { TimeredCounterDatetimeDuration } from './timered-counter-datetime-duration.js';
import { TimeredCounterString } from './timered-counter-string.js';
declare const TimeredCounterPlugin: Plugin;
export { TimeredCounterNumber, TimeredCounterString, TimeredCounterDatetimeDuration, };
export default TimeredCounterPlugin;
declare module 'vue' {
interface GlobalComponents {
TimeredCounterNumber: typeof TimeredCounterNumber;
TimeredCounterDatetimeDuration: typeof TimeredCounterDatetimeDuration;
TimeredCounterString: typeof TimeredCounterString;
}
}