10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import type { Entity } from "../types/entity.ts";
|
|
import type { BaseFile } from "./base-file.ts";
|
|
|
|
/**
|
|
* Represents a file as managed by the domain.
|
|
*/
|
|
export interface StoredFile extends BaseFile, Entity {
|
|
url: string;
|
|
}
|