/**
* The components is the container of some properties that
* the entity possesses. It may also contain some methods.
*/exportinterfaceComponent {
/**
* Component name. It should be unique
*/readonlyname: symbol;
}
exporttypeComponentProps<T> = Partial<Omit<T, 'name'>>;