stackpress
Version:
Incept is a content management framework.
5 lines (4 loc) • 396 B
TypeScript
import type { UnknownNest, NestedObject, StatusResponse } from '@stackpress/lib/types';
import type Engine from '@stackpress/inquire/Engine';
import type Model from '../../schema/spec/Model.js';
export default function update<M extends UnknownNest = UnknownNest>(model: Model, engine: Engine, ids: Record<string, string | number>, input: NestedObject, seed?: string): Promise<StatusResponse<M>>;