The Status class.

Since

3.0.0

Type Parameters

Hierarchy (view full)

Constructors

Properties

endpoint: string = 'posts'
_instance: WPJSSingleton

Methods

  • Fetch a single status.

    Returns Promise<T | T[]>

    Since

    3.0.0

    Example

    import { Status } from '@quickdevelopment/wp-js';

    const status = new Status();

    status.fetch().then((data) => {
    console.log(data);
    });
  • Protected

    Fetch multiple objects from the endpoint.

    Returns Promise<T[]>

    Since

    2.0.0

  • Protected

    Get data about the current class.

    Type Parameters

    • T

    Returns Promise<T>

    Since

    1.0.0

  • Protected

    Get the search parameters.

    Returns URLSearchParams

  • Set search parameters for the request.

    Parameters

    • params: Record<string, string | number>

      Object containing search parameters.

    Returns this

    Since

    2.0.0

Generated using TypeDoc