@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
14 lines (13 loc) • 408 B
TypeScript
import type { AbstractServiceOptions } from '@directus/types';
import { ItemsService } from './items.js';
export interface DeploymentRun {
id: string;
project: string;
external_id: string;
target: string;
date_created: string;
user_created: string;
}
export declare class DeploymentRunsService extends ItemsService<DeploymentRun> {
constructor(options: AbstractServiceOptions);
}