/** * 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. */ import type { PagingMetadata } from './PagingMetadata'; import type { FrontendComponentLiteResource } from './FrontendComponentLiteResource'; /** * * @export * @interface PaginatedFrontendComponentLiteResourceResponse */ export interface PaginatedFrontendComponentLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedFrontendComponentLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedFrontendComponentLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedFrontendComponentLiteResourceResponse interface. */ export declare function instanceOfPaginatedFrontendComponentLiteResourceResponse(value: object): value is PaginatedFrontendComponentLiteResourceResponse; export declare function PaginatedFrontendComponentLiteResourceResponseFromJSON(json: any): PaginatedFrontendComponentLiteResourceResponse; export declare function PaginatedFrontendComponentLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedFrontendComponentLiteResourceResponse; export declare function PaginatedFrontendComponentLiteResourceResponseToJSON(json: any): PaginatedFrontendComponentLiteResourceResponse; export declare function PaginatedFrontendComponentLiteResourceResponseToJSONTyped(value?: PaginatedFrontendComponentLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;