Files
FastGPT/projects/app/src/global/support/api/openapiReq.d.ts
2023-10-14 23:02:01 +08:00

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'];
};