@ckir/corelib - v0.1.13
    Preparing search index...

    Variable RequestUnlimitedConst

    RequestUnlimited: {
        defaults: Options;
        endPoint: <T = unknown>(
            url: string | URL | Request,
            options?: Options,
        ) => Promise<RequestResult<T>>;
        endPoints: <T = unknown>(
            urls: (string | URL | Request)[],
            options?: Options,
        ) => Promise<RequestResult<T>[]>;
    } = ...

    Type Declaration

    • defaults: Options
    • endPoint: <T = unknown>(
          url: string | URL | Request,
          options?: Options,
      ) => Promise<RequestResult<T>>
    • endPoints: <T = unknown>(
          urls: (string | URL | Request)[],
          options?: Options,
      ) => Promise<RequestResult<T>[]>

    Use endPoint/endPoints functions directly.