UNPKG

@openfisca/json-model

Version:

Library to handle informations extracted in JSON or YAML format from OpenFisca parameters, variables, etc

13 lines (12 loc) 257 B
export interface Reference { href?: string; /** * Detailed title (with paragraph number, etc.) */ long_title?: string; note?: string; title?: string; } export type ReferencesByInstant = { [instant: string]: Reference[]; };