File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
packages/react-ghostmaker/src/maybeGhost Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11import { asGhostProps } from "../maybeGhost" ;
2- import { isReactGhost } from "../types" ;
2+ import { isReactGhost } from "../types.ts " ;
33import { expect , test } from "vitest" ;
44
55interface Props {
Original file line number Diff line number Diff line change 1- import { makeGhost } from "../makeGhost" ;
2- import { isReactGhost , type ReactGhost } from "../types" ;
1+ import { makeGhost } from "../makeGhost.ts " ;
2+ import { isReactGhost , type ReactGhost } from "../types.ts " ;
33import type {
44 MaybeReactGhost ,
55 PropsWithFixedUpReactGhosts ,
Original file line number Diff line number Diff line change 11import { describe , expectTypeOf , test } from "vitest" ;
22import { type MaybeReactGhost } from "./types.ts" ;
3- import type { ReactGhost } from "../types" ;
3+ import type { ReactGhost } from "../types.ts " ;
44import { asGhostProps } from "./asGhost.ts" ;
55
66interface ModelA {
Original file line number Diff line number Diff line change 1- import { type OrOptional , type ReactGhost } from "../types" ;
1+ import { type OrOptional , type ReactGhost } from "../types.ts " ;
22
33export type MaybeReactGhost < T > =
44 T extends ReactGhost < infer U > ? ReactGhost < U > | U : T | ReactGhost < T > ;
You can’t perform that action at this time.
0 commit comments