Tidy 5e Sheets API
    Preparing search index...

    Type Alias TidyConfig

    CONFIG.TIDY5E, the configuration backbone of Tidy 5e Sheets. Contains runtime data, components, and any data needed to apply dynamic configuration to the module.

    Update this data from a script or macro while running a Foundry world with Tidy 5e Sheets active to override its configurations.

    type TidyConfig = {
        applications: {
            actor: {
                Tidy5eCharacterSheetQuadrone: typeof Tidy5eCharacterSheetQuadrone;
                Tidy5eEncounterSheetQuadrone: typeof Tidy5eEncounterSheetQuadrone;
                Tidy5eGroupSheetQuadrone: typeof Tidy5eGroupSheetQuadrone;
                Tidy5eNpcSheetQuadrone: typeof Tidy5eNpcSheetQuadrone;
                Tidy5eVehicleSheetQuadrone: typeof Tidy5eVehicleSheetQuadrone;
            };
            item: {
                Tidy5eContainerSheetQuadrone: typeof Tidy5eContainerSheetQuadrone;
                Tidy5eItemSheetQuadrone: typeof Tidy5eItemSheetQuadrone;
            };
        };
        components: TidyComponentRegistry;
        description: string;
        features: TidyFeatureRegistry;
        partitions: TidyPartitionRegistry;
        utils: TidyPublicUtils;
    }
    Index

    Properties

    applications: {
        actor: {
            Tidy5eCharacterSheetQuadrone: typeof Tidy5eCharacterSheetQuadrone;
            Tidy5eEncounterSheetQuadrone: typeof Tidy5eEncounterSheetQuadrone;
            Tidy5eGroupSheetQuadrone: typeof Tidy5eGroupSheetQuadrone;
            Tidy5eNpcSheetQuadrone: typeof Tidy5eNpcSheetQuadrone;
            Tidy5eVehicleSheetQuadrone: typeof Tidy5eVehicleSheetQuadrone;
        };
        item: {
            Tidy5eContainerSheetQuadrone: typeof Tidy5eContainerSheetQuadrone;
            Tidy5eItemSheetQuadrone: typeof Tidy5eItemSheetQuadrone;
        };
    }
    description: string