12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
/**
|
|
* Name of the directory in which we put our metadata when exporting to the file
|
|
* system.
|
|
*/
|
|
export const exportMetadataDirectoryName = "metadata";
|
|
|
|
/**
|
|
* Name of the directory in which we keep trash items when deleting files that
|
|
* have been exported to the local disk previously.
|
|
*/
|
|
export const exportTrashDirectoryName = "Trash";
|