UNPKG

vertecs

Version:

A typescript entity-component-system framework

11 lines (9 loc) 188 B
/** * The json representation of a serialized component */ interface SerializedComponent<T> { id?: string; data: T; className: string; } export default SerializedComponent;