UNPKG

@space-cow-media/spellbook-client

Version:

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

33 lines (32 loc) 1.27 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. */ /** * * @export * @interface VariantsQueryValidationError */ export interface VariantsQueryValidationError { /** * * @type {Array<string>} * @memberof VariantsQueryValidationError */ q: Array<string>; } /** * Check if a given object implements the VariantsQueryValidationError interface. */ export declare function instanceOfVariantsQueryValidationError(value: object): value is VariantsQueryValidationError; export declare function VariantsQueryValidationErrorFromJSON(json: any): VariantsQueryValidationError; export declare function VariantsQueryValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): VariantsQueryValidationError; export declare function VariantsQueryValidationErrorToJSON(json: any): VariantsQueryValidationError; export declare function VariantsQueryValidationErrorToJSONTyped(value?: VariantsQueryValidationError | null, ignoreDiscriminator?: boolean): any;