@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
14 lines (11 loc) • 389 B
text/typescript
import { PauseType } from './types/PauseType.mjs';
import { RepeatType } from './types/RepeatType.mjs';
declare const PIXIVN_VERSION = "0.6.14";
declare const Repeat: RepeatType;
/**
* Pause the tickers for a duration.
* @param duration Duration in seconds
* @returns The pause object
*/
declare function Pause(duration: number): PauseType;
export { PIXIVN_VERSION, Pause, Repeat };