UNPKG

@skypilot/scraper

Version:
10 lines (9 loc) 281 B
import type { RequireProps } from '@skypilot/common-types'; export declare type DbRecord<R extends { [key: string]: any; }> = RequireProps<DbRecordInput<R>, 'retrievalId'>; export declare type DbRecordInput<R = { [key: string]: any; }> = R & { retrievalId?: string; };