@space-cow-media/spellbook-client
Version:
An Open Api generated client for the Commander Spellbook backend REST API.
33 lines (32 loc) • 953 B
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface Combo
*/
export interface Combo {
/**
*
* @type {number}
* @memberof Combo
*/
readonly id: number;
}
/**
* Check if a given object implements the Combo interface.
*/
export declare function instanceOfCombo(value: object): value is Combo;
export declare function ComboFromJSON(json: any): Combo;
export declare function ComboFromJSONTyped(json: any, ignoreDiscriminator: boolean): Combo;
export declare function ComboToJSON(json: any): Combo;
export declare function ComboToJSONTyped(value?: Omit<Combo, 'id'> | null, ignoreDiscriminator?: boolean): any;