UNPKG

yukinovel

Version:

Yukinovel is a simple web visual novel engine.

9 lines (8 loc) 304 B
import { Character } from '../types/index.js'; /** * Tạo nhân vật mới * @param name Tên nhân vật * @param options Các tùy chọn cho nhân vật * @returns Character object */ export declare function createCharacter(name: string, options?: Partial<Omit<Character, 'name'>>): Character;