mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
import type { OpenApiSchema } from '@fastgpt/support/openapi/type.d';
|
|
|
|
export type GetApiKeyProps = {
|
|
appId?: string;
|
|
};
|
|
|
|
export type EditApiKeyProps = {
|
|
appId?: string;
|
|
name: string;
|
|
limit: OpenApiSchema['limit'];
|
|
};
|