export interface ExampleRowInterface {
    name: string;
    age: number;
    date?: Date;
}
