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