Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RequestMessage

Request message

interface RequestMessage extends Message {
id: number | string | null;
method: string;
params?: any[] | object;
}

§Extends

§Properties

§
id: number | string | null
[src]

The request id.

§
method: string
[src]

The method to be invoked.

§
params?: any[] | object
[src]

The method's params.