@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
31 lines (30 loc) • 657 B
text/typescript
declare module "@drincs/pixi-vn" {
interface CharacterInterface {
/**
* The name of the character.
*/
name: string;
/**
* The surname of the character.
*/
surname?: string;
/**
* The age of the character.
*/
age?: number;
/**
* The icon of the character.
*/
readonly icon?: string;
/**
* The color of the character.
*/
readonly color?: string;
}
interface StepLabelProps {
[key: string]: any;
}
interface StepLabelResult {
[key: string]: any;
}
}