UNPKG

@warriorteam/zalo-personal

Version:

Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support, auto-reply, product catalog, and business features

18 lines (17 loc) 515 B
import type { NoteDetail } from "../models/index.js"; export type EditNoteOptions = { /** * New note title */ title: string; /** * Topic ID to edit note from */ topicId: string; /** * Should the note be pinned? */ pinAct?: boolean; }; export type EditNoteResponse = NoteDetail; export declare const editNoteFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (options: EditNoteOptions, groupId: string) => Promise<NoteDetail>;