interface NoteCreateBody {
    content?: string;
    project_id?: null | number;
    source_id: string;
    title?: string;
}

Properties

content?: string
project_id?: null | number
source_id: string
title?: string