Files
FastGPT/projects/app/src/global/support/openapi/api.d.ts
2023-11-09 09:46:57 +08:00

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