Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...

    Variable queriesConst

    queries: {
        confirmTeleportToken: (
            queryData: { behaviorUuid: string; tokenUuid: string },
        ) => Promise<boolean>;
        dialog: (
            __namedParameters: {
                config: object;
                type: "input" | "wait" | "prompt" | "confirm";
            },
        ) => Promise<any>;
    } = ...

    System and modules must prefix the names of the queries they register (e.g. "my-module.aCustomQuery"). Non-prefixed query names are reserved by core.

    Type Declaration

    • confirmTeleportToken: (queryData: { behaviorUuid: string; tokenUuid: string }) => Promise<boolean>
    • dialog: (
          __namedParameters: {
              config: object;
              type: "input" | "wait" | "prompt" | "confirm";
          },
      ) => Promise<any>