@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
14 lines (11 loc) • 387 B
TypeScript
import { PauseType } from './types/PauseType.js';
import { RepeatType } from './types/RepeatType.js';
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 };