Icons

Methods and related types for `scrims.icons`.

Icons (scrims.icons)

Table of Contents

Methods

Method Signature
fetchAll fetchAll() => Promise<ScrimsIcon[]>

Method Signatures

fetchAll

fetchAll(): Promise<ScrimsIcon[]>

Related Type References

JsonObject

type JsonObject = Record<string, unknown>;

ScrimsIcon

type ScrimsIcon = JsonObject
  & {
        id?: string;
        name?: string;
        aliases?: string[];
      };