Remove Tag

This commit is contained in:
Ukendio 2024-09-12 16:25:13 +02:00
parent 699beccc1c
commit f0f00f959e

3
src/index.d.ts vendored
View file

@ -182,7 +182,7 @@ export class World {
* @param obj The second entity * @param obj The second entity
* @returns The composite key * @returns The composite key
*/ */
export function pair<R, T>(pred: Entity<R>, obj: Entity<T>): Pair; export function pair(pred: Entity, obj: Entity): Pair;
/** /**
* Checks if the entity is a composite key * Checks if the entity is a composite key
@ -204,6 +204,5 @@ export const OnDelete: Entity;
export const OnDeleteTarget: Entity; export const OnDeleteTarget: Entity;
export const Delete: Entity; export const Delete: Entity;
export const Remove: Entity; export const Remove: Entity;
export const Tag: Entity;
export const Name: Entity<string>; export const Name: Entity<string>;
export const Rest: Entity; export const Rest: Entity;