interface PracticumData {
    created_at?: string;
    description: string;
    email?: null | string;
    end_date: string;
    first_name?: null | string;
    instructor_name?: string;
    last_name?: null | string;
    name: string;
    required_hours: number;
    start_date: string;
    userid?: number;
    work_log_practicum_id: number;
    [column: string]: any;
    [column: number]: any;
}

Hierarchy

  • RowDataPacket
    • PracticumData

Indexable

  • [column: string]: any
  • [column: number]: any

Properties

created_at?: string
description: string
email?: null | string
end_date: string
first_name?: null | string
instructor_name?: string
last_name?: null | string
name: string
required_hours: number
start_date: string
userid?: number
work_log_practicum_id: number