/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { StoreListingIntegration } from './StoreListingIntegration'; import type { StoreListingPlugin } from './StoreListingPlugin'; /** * @type StoreListing * * @export */ export type StoreListing = { kind: 'INTEGRATION'; } & StoreListingIntegration | { kind: 'PLUGIN'; } & StoreListingPlugin; export declare function StoreListingFromJSON(json: any): StoreListing; export declare function StoreListingFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListing; export declare function StoreListingToJSON(json: any): any; export declare function StoreListingToJSONTyped(value?: StoreListing | null, ignoreDiscriminator?: boolean): any;