5 lines
135 B
TypeScript
5 lines
135 B
TypeScript
import type BaseCollection from "./baseCollection";
|
|
|
|
export default interface Operation extends BaseCollection {
|
|
image: undefined;
|
|
}
|