interface ILitResource {
    resource: string;
    resourcePrefix: LitResourcePrefix;
    getResourceKey(): string;
    isValidLitAbility(litAbility: LitAbility): boolean;
    toString(): string;
}

Implemented by

Properties

resource: string
resourcePrefix: LitResourcePrefix

Methods

  • Validates that the given LIT ability is valid for this resource.

    Parameters

    • litAbility: LitAbility

      The LIT ability to validate.

    Returns boolean