1use std::collections::HashMap; 2 3pub type TextReferenceKey = String; 4 5pub type TextReference = String; 6 7pub type TextReferenceMap = HashMap<TextReferenceKey, TextReference>;