lint config for consistent import style (#3248)

* MOB-1008 add lint config for consistent ts imports

* auto-fix consistent imports

* auto-fix consistent imports

* reapply autofix from latest main

* Extend Props interface from PropsWithChildren

---------

Co-authored-by: Johannes Klein <johannes.t.klein@gmail.com>
This commit is contained in:
Ryan Stelly
2025-11-27 20:21:03 -06:00
committed by GitHub
parent 7e5866c5f5
commit ca686f3c11
132 changed files with 255 additions and 162 deletions

View File

@@ -1,7 +1,7 @@
// Mostly from https://github.com/pmndrs/zustand/blob/main/docs/guides/testing.md#jest
import { cloneDeep } from "lodash";
import * as zustand from "zustand";
import type * as zustand from "zustand";
const { create: actualCreate, createStore: actualCreateStore }
= jest.requireActual<typeof zustand>( "zustand" );