UNPKG

@vector-im/matrix-bot-sdk

Version:

TypeScript/JavaScript SDK for Matrix bots and appservices

6 lines (4 loc) 157 B
export type Json = string | number | boolean | null | undefined | Json[] | { [key: string]: Json }; export interface IJsonType { [key: string]: Json; }