13 lines
395 B
TypeScript
13 lines
395 B
TypeScript
import type DeedType from "./DeedType";
|
|
import type DocumentType from "./DocumentType";
|
|
declare namespace DeedTypeHasDocumentType {
|
|
class IDeedTypeHasDocumentType {
|
|
uuid: string;
|
|
document_type: DocumentType.IDocumentType;
|
|
deed_type: DeedType.IDeedType;
|
|
created_at: Date | null;
|
|
updated_at: Date | null;
|
|
}
|
|
}
|
|
export default DeedTypeHasDocumentType;
|