UNPKG

naystack

Version:

A stack built with tight Next + Drizzle + GraphQL

7 lines (5 loc) 513 B
declare function createContainer(token: string, text: string, reply_to_id?: string): Promise<string | undefined>; declare function publishContainer(token: string, creation_id: string): Promise<string | undefined>; declare const createThreadsPost: (token: string, text: string, reply_to_id?: string) => Promise<string | null | undefined>; declare const createThread: (token: string, threads: string[]) => Promise<string | undefined>; export { createContainer, createThread, createThreadsPost, publishContainer };