interface-relay/dist/index.js

20 lines
400 B
JavaScript
Raw Normal View History

2022-08-29 02:02:11 +00:00
// @ts-ignore
export const RPC_REQUEST_SCHEMA = {
type: "object",
properties: {
module: {
type: "string",
},
method: {
type: "string",
},
data: {
type: ["number", "string", "boolean", "object", "array"],
},
bypassCache: {
type: "boolean",
nullable: true,
},
},
};