interface Note {
    content: string;
    created_at: null | string;
    id: number;
    project_id: null | number;
    source_fk: number;
    title: string;
    updated_at: null | string;
}

Properties

content: string
created_at: null | string
id: number
project_id: null | number
source_fk: number
title: string
updated_at: null | string