Refactor & update API

This commit is contained in:
Andras Schmelczer 2024-12-10 22:25:00 +00:00
parent 5f1075879f
commit 3065edba37
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
6 changed files with 42 additions and 33 deletions

View file

@ -0,0 +1,8 @@
export type DocumentId = string;
export type DocumentVersionId = number;
export type RelativePath = string;
export interface DocumentMetadata {
documentId: DocumentId;
parentVersionId: DocumentVersionId;
}