UNPKG

@drincs/pixi-vn

Version:

Pixi'VN is a npm package that provides various features for creating visual novels.

14 lines (12 loc) 203 B
/** * Interface for texture memory */ interface TextureMemory { /** * @deprecated */ image?: string; alias?: string; url: string; } export type { TextureMemory as default };