7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
|
import type BaseImage from "../component/baseImage";
|
||
|
import type BaseCollection from "./baseCollection";
|
||
|
|
||
|
export default interface Vehicle extends BaseCollection {
|
||
|
date: undefined;
|
||
|
}
|