UNPKG

tarantoolscript

Version:

TypeScript definitions for Tarantool Lua API.

11 lines (9 loc) 266 B
export type CompatOption = | { current: CompatOption; default: Exclude<CompatOptionVersion, 'default'>; brief?: string; } | CompatOptionVersion | `default (${'old' | 'new'})`; export type CompatOptionVersion = 'new' | 'old' | 'default';