Enforce consistent TypeScript type import style (#6805)

This commit is contained in:
Matiss Janis Aboltins
2026-02-10 13:33:20 +00:00
committed by GitHub
parent 0c3b54ee7d
commit 84cebed20b
652 changed files with 1956 additions and 2247 deletions

View File

@@ -1,8 +1,8 @@
import { type HTMLProps, type Ref } from 'react';
import type { HTMLProps, Ref } from 'react';
import { css, cx } from '@emotion/css';
import { type CSSProperties } from './styles';
import type { CSSProperties } from './styles';
type BlockProps = HTMLProps<HTMLDivElement> & {
innerRef?: Ref<HTMLDivElement>;