Skip to content

Commit

Permalink
chore: wrap long line
Browse files Browse the repository at this point in the history
  • Loading branch information
thejustinwalsh authored and trezy committed Aug 14, 2024
1 parent 2e9d8ee commit 64ae39c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/typedefs/PixiElements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ import type { PixiComponents } from './PixiComponents';
import type { PixiReactElementProps } from './PixiReactNode';

export type PixiElements = {
[K in PixiComponents as K extends keyof typeof NameOverrides ? typeof NameOverrides[K] : Uncapitalize<K>]: PixiReactElementProps<typeof PIXI[K]>;
[K in PixiComponents as K extends keyof typeof NameOverrides ? typeof NameOverrides[K] : Uncapitalize<K>]:
PixiReactElementProps<typeof PIXI[K]>;
};

0 comments on commit 64ae39c

Please sign in to comment.