philia
    Preparing search index...
    interface Request<T extends keyof IAPI = keyof IAPI> {
        action: T;
        echo: string;
        params: IAPI[T]["request"];
    }

    Type Parameters

    Index

    Properties

    Properties

    action: T

    请求的 API 名称

    echo: string

    '回声', 如果指定了 echo 字段, 那么响应包也会同时包含一个 echo 字段, 它们会有相同的值

    params: IAPI[T]["request"]

    请求参数