6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
import type BaseCollection from "./baseCollection";
|
|
|
|
export default interface Event extends BaseCollection {
|
|
image: undefined;
|
|
content: undefined;
|
|
}
|