mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-22 03:10:15 +01:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
|
|
import type { AuthType } from 'librechat-data-provider';
|
||
|
|
|
||
|
|
export type ApiKeyFormData = {
|
||
|
|
apiKey: string;
|
||
|
|
authType?: string | AuthType;
|
||
|
|
};
|