Files
FastGPT/projects/app/src/global/support/api/openapiReq.d.ts

12 lines
218 B
TypeScript

import type { OpenApiSchema } from '@/types/support/openapi';
export type GetApiKeyProps = {
appId?: string;
};
export type EditApiKeyProps = {
appId?: string;
name: string;
limit: OpenApiSchema['limit'];
};