/** * Describes the kind of value a `GridLength` holds. * * | Value | Meaning | * |----------|------------------------------------------------------------------| * | `'auto'` | The track size is determined by the content (auto-sizing). | * | `'pixel'`| The track size is a fixed value in device-independent pixels. | * | `'star'` | The track size is a weighted proportion of remaining free space. | * * @public */ export type GridUnitType = 'auto' | 'pixel' | 'star'; //# sourceMappingURL=GridUnitType.d.ts.map