Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
11 lines
69 B
TypeScript
11 lines
69 B
TypeScript
|
|
|
|
/**
|
|
* An entity
|
|
*/
|
|
export interface Entity {
|
|
id: number,
|
|
}
|
|
|
|
|