UNPKG

n8n-nodes-zola-fake

Version:

Các node hỗ trợ Zalo cho n8n Thong

8 lines (7 loc) 379 B
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>;