diff --git a/jecs.d.ts b/jecs.d.ts index f6e5e7eb..ff6398ee 100644 --- a/jecs.d.ts +++ b/jecs.d.ts @@ -2,7 +2,7 @@ * A unique identifier in the world, entity. * The generic type T defines the data type when this entity is used as a component */ -export type Entity = number & { __jecs_value: T }; +export type Entity = number & { __jecs_value: T }; /** * An entity with no associated data when used as a component