Skip to content

Commit

Permalink
Apply eslint-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Corepex authored and github-actions[bot] committed Jan 22, 2025
1 parent 93c1ad6 commit f78b006
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions assets/js/src/core/types/components/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
* @license https://github.com/pimcore/studio-ui-bundle/blob/1.x/LICENSE.md POCL and PCL
*/

import type {ColumnDef, RowSelectionState, SortingState, TableOptions} from '@tanstack/react-table'
import {type GridCellReference, GridContextMenuProps} from '@Pimcore/components/grid/grid'
import React, {ElementType} from "react";
import type { ColumnDef, RowSelectionState, SortingState, TableOptions } from '@tanstack/react-table'
import { type GridCellReference, type GridContextMenuProps } from '@Pimcore/components/grid/grid'
import { type ElementType } from 'react'
import type React from 'react'

type GapStringType = 'mini' | 'extra-small' | 'small' | 'normal' | 'medium' | 'large' | 'extra-large' | 'maxi'
export interface GapRowColGroupType { x: GapStringType | number, y: GapStringType | number }
Expand All @@ -27,10 +28,9 @@ export interface OnUpdateCellDataEvent {
rowData: any
}


export interface ListGridContextMenuProps {
row: {
id: GridContextMenuProps['id'],
id: GridContextMenuProps['id']
[x: string]: any
}
children: React.ReactNode
Expand Down

0 comments on commit f78b006

Please sign in to comment.