read-gedcom
Version:
Gedcom file reader
8 lines (7 loc) • 314 B
TypeScript
import { ValueExactTime } from './ValueExactTime';
/**
* Parses a time of format hours-minutes, optionally containing seconds and even centiseconds information.
* @param value The value to parse
* @category Value parsers
*/
export declare const parseExactTime: (value: string | null) => ValueExactTime | null;