/** * 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. */ import type { DashboardWidget } from './DashboardWidget'; /** * * @export * @interface DashboardConfig */ export interface DashboardConfig { /** * Width of the grid the widget positions and sizes are expressed in. * Absent or 0 means the legacy two-column grid, where w=1 is half-width and * w=2 is full-width. New dashboards use 8. * @type {number} * @memberof DashboardConfig */ gridColumns?: number; /** * * @type {Array} * @memberof DashboardConfig */ widgets?: Array; } /** * Check if a given object implements the DashboardConfig interface. */ export declare function instanceOfDashboardConfig(value: object): value is DashboardConfig; export declare function DashboardConfigFromJSON(json: any): DashboardConfig; export declare function DashboardConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardConfig; export declare function DashboardConfigToJSON(json: any): DashboardConfig; export declare function DashboardConfigToJSONTyped(value?: DashboardConfig | null, ignoreDiscriminator?: boolean): any;