mirror of
https://github.com/labring/FastGPT.git
synced 2025-08-03 13:38:00 +00:00
12 lines
231 B
TypeScript
12 lines
231 B
TypeScript
import type { OpenApiSchema } from '@fastgpt/global/support/openapi/type';
|
|
|
|
export type GetApiKeyProps = {
|
|
appId?: string;
|
|
};
|
|
|
|
export type EditApiKeyProps = {
|
|
appId?: string;
|
|
name: string;
|
|
limit: OpenApiSchema['limit'];
|
|
};
|