* Returns the class typed as VisualNovelEngine. * This enables type-safe access while allowing external users to extend * the VisualNovelEngine interface via declaration merging. * * @internal
()
| 165 | * @internal |
| 166 | */ |
| 167 | private static asEngine(): VisualNovelEngine { |
| 168 | return this as unknown as VisualNovelEngine; |
| 169 | } |
| 170 | |
| 171 | static _languageMetadata: Record<string, { code: string; icon: string }> = {}; |
| 172 | static _events: Record<string, unknown> = {}; |
no outgoing calls
no test coverage detected