@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
20 lines (17 loc) • 595 B
text/typescript
import { StepHistoryDataType } from '../types/StepHistoryDataType.mjs';
import { StepLabelType } from '../types/StepLabelType.mjs';
import '@drincs/pixi-vn/dist/override';
/**
* Convert StepLabel to StepHistoryData
* @param step
* @returns
*/
declare function getStepSha1(step: StepLabelType): StepHistoryDataType;
/**
* Check if two steps are equal
* @param step1
* @param step2
* @returns
*/
declare function checkIfStepsIsEqual(step1: StepHistoryDataType | StepLabelType<any>, step2: StepHistoryDataType | StepLabelType<any>): boolean;
export { checkIfStepsIsEqual, getStepSha1 };