UNPKG

@blockprotocol/external-api

Version:

Implementation of the Block Protocol external API service specification for blocks and embedding applications

11 lines (10 loc) 291 B
export type ServiceJsonMessage = { messageName: string; description: string; source: "block" | "embedder"; respondedToBy: string | null; sentOnInitialization: boolean; data: any; errorCodes: string[]; }; export declare const mapboxMessages: ServiceJsonMessage[];