@drincs/pixi-vn-ink
Version:
Pixi'VN gives you the ability to write your own narrative using Ink
11 lines (8 loc) • 345 B
TypeScript
import { PixiVNJson } from '@drincs/pixi-vn-json';
/**
* This function converts string written in ink language into the LabelJsonType.
* @param text string or array of strings written in ink language
* @returns LabelJsonType or undefined
*/
declare function convertInkText(text: string): PixiVNJson | undefined;
export { convertInkText };