12 lines
218 B
TypeScript
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'];
|
|
};
|