mirror of
https://github.com/Unleash/unleash.git
synced 2024-10-28 19:06:12 +01:00
53354224fc
Upgrades biome to 1.6.1, and updates husky pre-commit hook. Most changes here are making type imports explicit.
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import { createContext } from 'react';
|
|
import type Plausible from 'plausible-tracker';
|
|
|
|
export const PlausibleContext = createContext<ReturnType<
|
|
typeof Plausible
|
|
> | null>(null);
|