UNPKG

@space-cow-media/spellbook-client

Version:

An Open Api generated client for the Commander Spellbook backend REST API.

35 lines (34 loc) 1.09 kB
/** * Commander Spellbook API * API for Commander Spellbook, the combo database engine for Magic: The Gathering * * The version of the OpenAPI document: 4.8.19 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * `H` - Hand * * `B` - Battlefield * * `C` - Command Zone * * `E` - Exile * * `G` - Graveyard * * `L` - Library * @export * @enum {string} */ export declare enum ZoneLocationsEnum { H = "H", B = "B", C = "C", E = "E", G = "G", L = "L" } export declare function instanceOfZoneLocationsEnum(value: any): boolean; export declare function ZoneLocationsEnumFromJSON(json: any): ZoneLocationsEnum; export declare function ZoneLocationsEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ZoneLocationsEnum; export declare function ZoneLocationsEnumToJSON(value?: ZoneLocationsEnum | null): any; export declare function ZoneLocationsEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): ZoneLocationsEnum;