Compare commits

...

3 commits

Author SHA1 Message Date
Clown
d20720967e
Merge 96bed9bd7e into 5e6b030fb4 2025-04-05 01:04:20 +02:00
Sivak
5e6b030fb4
Change OnSet to OnChange in type definitions for typescript (#214)
Some checks are pending
analysis / Run Luau Analyze (push) Waiting to run
deploy-docs / build (push) Waiting to run
deploy-docs / Deploy (push) Blocked by required conditions
publish-npm / publish (push) Waiting to run
unit-testing / Run Luau Tests (push) Waiting to run
2025-04-05 00:36:04 +02:00
YetAnotherClown
96bed9bd7e Empty Commit 2025-02-25 11:28:04 -05:00

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 OnAdd: Entity<(e: Entity) => void>;
export declare const OnRemove: 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 ChildOf: Tag;
export declare const Wildcard: Entity; export declare const Wildcard: Entity;
export declare const w: Entity; export declare const w: Entity;