Change OnSet to OnChange in type definitions for typescript

This commit is contained in:
Sivak 2025-04-04 17:28:12 -04:00 committed by GitHub
parent 908d83a619
commit 0056a265e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

2
jecs.d.ts vendored
View file

@ -258,7 +258,7 @@ export function pair_second<P, O>(world: World, p: Pair<P, O>): Entity<O>;
export declare const OnAdd: Entity<(e: Entity) => void>;
export declare const OnRemove: Entity<(e: Entity) => void>;
export declare const OnSet: Entity<(e: Entity, value: unknown) => void>;
export declare const OnChange: Entity<(e: Entity, value: unknown) => void>;
export declare const ChildOf: Tag;
export declare const Wildcard: Entity;
export declare const w: Entity;