Version: 1.0.01.0.11.0.21.0.31.0.41.0.51.0.61.0.71.0.81.1.01.2.01.2.11.2.21.3.01.3.11.3.21.4.01.4.11.4.21.4.31.4.41.4.51.4.61.4.72.0.02.1.02.1.12.2.02.2.12.3.02.4.02.4.12.4.22.4.32.4.42.4.52.5.02.5.13.0.03.1.03.1.13.1.23.1.33.2.04.0.04.1.04.1.14.2.04.2.14.2.24.3.04.4.04.4.14.4.24.5.04.5.14.6.04.6.14.6.24.6.35.0.05.0.15.1.05.1.15.1.25.1.35.1.45.2.05.3.0-beta5.3.05.3.15.3.25.4.05.4.15.4.25.5.05.5.25.5.35.6.05.7.05.7.15.8.05.8.15.8.25.9.05.9.15.9.25.9.35.10.05.11.05.11.15.12.05.12.15.12.2-beta.15.12.25.13.05.13.15.13.2-beta.15.13.25.13.35.13.45.13.5
/**
* A particular field of a parsed result of a data string.
*/
export interface ParserField {
* The name of the field.
readonly name: string;
* The parsed representation of the data contained in the field.
* If no parsed representation is available for the field, this property is undefined.
* Use [[ParserField.rawString]] to retrieve the data for these fields.
// tslint:disable-next-line:no-any
readonly parsed?: any;
* The raw substring of the original code containing the field data.
* For fields that are inferred and do not have a direct correspondence to a particular part of the string,
* the string is set to an empty string.
readonly rawString: string;
}