Something went wrong. Try again.
because I got bored of customising my CV for every job
Something went wrong. Try again.
295 B · 11 lines
TypeScript
123456789101112import type { ParsedCVData } from "@cv/ai-parser";import type { User } from "@cv/core";
export interface DataImportSource { readonly name: string; execute( user: User, params: Record<string, unknown>, onStatus: (message: string) => Promise<void>, ): Promise<ParsedCVData>;}