ecspresso
    Preparing search index...

    Type Alias ConfigsAreCompatible<A, B>

    ConfigsAreCompatible: TypesAreCompatible<A["components"], B["components"]> extends true
        ? TypesAreCompatible<A["events"], B["events"]> extends true
            ? TypesAreCompatible<A["resources"], B["resources"]> extends true
                ? TypesAreCompatible<A["assets"], B["assets"]> extends true
                    ? TypesAreCompatible<A["screens"], B["screens"]>
                    : false
                : false
            : false
        : false

    Check if two WorldConfig types are compatible (no conflicting keys across any slot).

    Type Parameters