/** * My API * API documentation for my Laravel app * * 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. */ /** * * @export * @interface FrontendComponentLiteResource */ export interface FrontendComponentLiteResource { /** * * @type {number} * @memberof FrontendComponentLiteResource */ id: number; /** * * @type {string} * @memberof FrontendComponentLiteResource */ name: string; /** * * @type {object} * @memberof FrontendComponentLiteResource */ schema: object; } /** * Check if a given object implements the FrontendComponentLiteResource interface. */ export declare function instanceOfFrontendComponentLiteResource(value: object): value is FrontendComponentLiteResource; export declare function FrontendComponentLiteResourceFromJSON(json: any): FrontendComponentLiteResource; export declare function FrontendComponentLiteResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): FrontendComponentLiteResource; export declare function FrontendComponentLiteResourceToJSON(json: any): FrontendComponentLiteResource; export declare function FrontendComponentLiteResourceToJSONTyped(value?: FrontendComponentLiteResource | null, ignoreDiscriminator?: boolean): any;