5 lines
166 B
TypeScript
5 lines
166 B
TypeScript
import type { Container } from '../../../scene/container/Container';
|
|
import type { View } from './view/View';
|
|
export interface Renderable extends Container, View {
|
|
}
|