Improve docs

This commit is contained in:
Manav Rathi 2024-04-18 13:23:20 +05:30
parent 230a8a72ab
commit 518d573add
No known key found for this signature in database
2 changed files with 8 additions and 5 deletions

View file

@ -11,13 +11,14 @@ export interface AppUpdate {
}
export interface FolderWatch {
// TODO(MR): Is this needed
// TODO(MR): Is this needed?
rootFolderName: string;
collectionMapping: CollectionMapping;
folderPath: string;
syncedFiles: FolderWatchSyncedFile[];
ignoredFiles: string[];
}
export type CollectionMapping = "root" | "parent";
export interface FolderWatchSyncedFile {

View file

@ -407,13 +407,15 @@ export interface FolderWatch {
}
/**
* The ways in which we can map nested files to collections when uploading or
* watching directories from the user's local file system.
* The ways in which directories are mapped to collection.
*
* This comes into play when we have nested directories that we are trying to
* upload or watch on the user's local file system.
*/
export type CollectionMapping =
/** Map everything to a single collection corresponding to the root directory */
/** All files go into a single collection named after the root directory. */
| "root"
/** Map each file to a collection named after its parent directory */
/** Each file goes to a collection named after its parent directory. */
| "parent";
/**