@warriorteam/zalo-personal
Version:
Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support
8 lines (7 loc) • 379 B
TypeScript
import { NoteDetail } from "../models/Board.js";
export type CreateNoteGroupOptions = {
title: string;
pinAct?: boolean;
};
export type CreateNoteGroupResponse = NoteDetail;
export declare const createNoteGroupFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (options: CreateNoteGroupOptions, groupId: string) => Promise<NoteDetail>;