Documentation
    Preparing search index...

    Interface ApiRequest

    interface ApiRequest {
        body: any;
        headers?: Record<string, string | string[] | undefined>;
        params: Record<string, string>;
        query: Record<string, any>;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    body: any
    headers?: Record<string, string | string[] | undefined>
    params: Record<string, string>
    query: Record<string, any>