Files
Jyotisha/frontend/src/lib/birth-time-candidate-completion.ts
T

15 lines
363 B
TypeScript

type CandidateCompletionRequest = {
readonly userId: string;
readonly caseId: string;
readonly resultId: string;
readonly time: string;
};
/** Direct adoption was superseded by versioned high-confidence confirmation. */
export function candidateWorkingTime(
_stored: unknown,
_request: CandidateCompletionRequest,
): string | null {
return null;
}