editNote
Chỉnh sửa ghi chú
api.editNote(options, groupId)
Parameters
options
EditNoteOptionsgroupId
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
Related
Last updated