UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

9 lines (8 loc) 536 B
import type { AbstractServiceOptions, FlowRaw, Item, MutationOptions, PrimaryKey } from '@directus/types'; import { ItemsService } from './items.js'; export declare class FlowsService extends ItemsService<FlowRaw> { constructor(options: AbstractServiceOptions); createOne(data: Partial<Item>, opts?: MutationOptions): Promise<PrimaryKey>; updateMany(keys: PrimaryKey[], data: Partial<Item>, opts?: MutationOptions): Promise<PrimaryKey[]>; deleteMany(keys: PrimaryKey[], opts?: MutationOptions): Promise<PrimaryKey[]>; }