stackpress
Version:
Incept is a content management framework.
5 lines (4 loc) • 384 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 get<M extends UnknownNest = UnknownNest>(model: Model, engine: Engine, key: string, value: string | number, columns?: string[], seed?: string): Promise<StatusResponse<M | null>>;