UNPKG

@drincs/pixi-vn-ink

Version:

Pixi'VN gives you the ability to write your own narrative using Ink

15 lines (13 loc) 442 B
/** * https://github.com/inkle/ink/blob/master/Documentation/ink_JSON_runtime_format.md#variable-reference * * Obtain the current value of a named variable, and push it to the evaluation stack. * * Example: * * {"VAR?": "danger"} - Get an existing global or temporary variable named danger and push its value to the evaluation stack. */ type VariableReference = { "VAR?": string; }; export type { VariableReference as default };