mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
46 lines
906 B
Markdown
46 lines
906 B
Markdown
|
+++
|
||
|
# -----------------------------------------------------------------------
|
||
|
# Do not edit this file. It is automatically generated by API Documenter.
|
||
|
# -----------------------------------------------------------------------
|
||
|
title = "SizeMeta"
|
||
|
keywords = ["grafana","documentation","sdk","@grafana/runtime"]
|
||
|
type = "docs"
|
||
|
+++
|
||
|
|
||
|
## SizeMeta interface
|
||
|
|
||
|
Describes a size with width/height
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
export interface SizeMeta
|
||
|
```
|
||
|
<b>Import</b>
|
||
|
|
||
|
```typescript
|
||
|
import { SizeMeta } from '@grafana/runtime';
|
||
|
```
|
||
|
<b>Properties</b>
|
||
|
|
||
|
| Property | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [height](#height-property) | <code>number</code> | |
|
||
|
| [width](#width-property) | <code>number</code> | |
|
||
|
|
||
|
### height property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
height: number;
|
||
|
```
|
||
|
|
||
|
### width property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
width: number;
|
||
|
```
|