Variable RoutesConst

Routes: {
    Guilds: {
        FetchById: ((id, withCounts) => string);
        GetWelcomeScreen: ((id) => string);
        SetWelcomeScreen: ((id, enabled, description, channels) => string);
    };
    Users: {
        ById: ((id) => string);
        Me: string;
    };
} = ...

Type declaration

  • Guilds: {
        FetchById: ((id, withCounts) => string);
        GetWelcomeScreen: ((id) => string);
        SetWelcomeScreen: ((id, enabled, description, channels) => string);
    }
    • FetchById: ((id, withCounts) => string)
        • (id, withCounts): string
        • Parameters

          • id: string
          • withCounts: boolean

          Returns string

    • GetWelcomeScreen: ((id) => string)
        • (id): string
        • Parameters

          • id: string

          Returns string

    • SetWelcomeScreen: ((id, enabled, description, channels) => string)
        • (id, enabled, description, channels): string
        • Parameters

          Returns string

  • Users: {
        ById: ((id) => string);
        Me: string;
    }
    • ById: ((id) => string)
        • (id): string
        • Parameters

          • id: string

          Returns string

    • Me: string

Generated using TypeDoc