Skip to main content
Deno 2 is finally here 🎉️
Learn more

ItChat API Types

Installation

$ npm i @itchatapp/types

Example Usage

// for deno runtime 
// import type { Message } from 'https://deno.land/x/itchatjs_types/mod.ts'
import type { Message } from '@itchatapp/types'

const message: Message = {
    id: 0,
    author_id: 0,
    channel_id: 0,
    content: 'Hi'
}