/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 WidgetSize */ export interface WidgetSize { /** * * @type {number} * @memberof WidgetSize */ h?: number; /** * Column span. In an 8-column config: 8 = full width, 4 = half, 2 = quarter. * @type {number} * @memberof WidgetSize */ w?: number; } /** * Check if a given object implements the WidgetSize interface. */ export declare function instanceOfWidgetSize(value: object): value is WidgetSize; export declare function WidgetSizeFromJSON(json: any): WidgetSize; export declare function WidgetSizeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WidgetSize; export declare function WidgetSizeToJSON(json: any): WidgetSize; export declare function WidgetSizeToJSONTyped(value?: WidgetSize | null, ignoreDiscriminator?: boolean): any;