@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
20 lines (19 loc) • 449 B
TypeScript
import type { EndpointConfig, HookConfig, OperationApiConfig } from '@directus/extensions';
export type BundleConfig = {
endpoints: {
name: string;
config: EndpointConfig;
}[];
hooks: {
name: string;
config: HookConfig;
}[];
operations: {
name: string;
config: OperationApiConfig;
}[];
};
export interface ExtensionManagerOptions {
schedule: boolean;
watch: boolean;
}