export interface Transformer { uuid: string; defaultValue: T; parser: (dpStr: string) => T; formatter: (data: T) => string; }