UNPKG

read-gedcom

Version:
10 lines (9 loc) 399 B
import { AnyConstructor } from '../../meta'; import { SelectionAny, SelectionSourceCitation } from '../internal'; /** * @ignore */ export declare const SelectionWithSourceCitationMixin: <C extends AnyConstructor<SelectionAny>>(Base: C) => C & AnyConstructor<SelectionWithSourceCitationMixin>; export interface SelectionWithSourceCitationMixin { getSourceCitation(): SelectionSourceCitation; }