editNote

Chỉnh sửa ghi chú

api.editNote(options, groupId)

Parameters

  • options EditNoteOptions

  • groupId string

Return

Promise<EditNoteResponse>

Types

export type EditNoteOptions = {
    /**
     * tiêu đề
     */
    title: string;
    /**
     * id ghi chú
     */
    topicId: string;
    /**
     * ghim ghi chú?
     */
    pinAct?: boolean;
};

export type EditNoteResponse = NoteDetail;

Examples

Last updated