createNote

Tạo ghi chú mới

api.createNote(options, groupId)

Parameters

  • options CreateNoteOptions

    • title string

    • pinAct boolean?

      • Ghim ghi chú, mặc định false

  • groupId string

Return

Promise<CreateNoteResponse>

Types

export type CreateNoteOptions = {
    title: string;
    pinAct?: boolean;
};

export type CreateNoteResponse = NoteDetail;

Examples

Tạp ghi chú mới

Last updated