mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-02 09:05:49 +02:00
12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
|
import { GetApiKeyResponse } from "@server/routers/apiKeys";
|
||
|
import { createContext } from "react";
|
||
|
|
||
|
interface ApiKeyContextType {
|
||
|
apiKey: GetApiKeyResponse;
|
||
|
updateApiKey: (updatedApiKey: Partial<GetApiKeyResponse>) => void;
|
||
|
}
|
||
|
|
||
|
const ApiKeyContext = createContext<ApiKeyContextType | undefined>(undefined);
|
||
|
|
||
|
export default ApiKeyContext;
|