Standardize DB interfaces with dependency tracking comments and clean up legacy location.reload() arguments
This commit is contained in:
@@ -5,7 +5,13 @@ import type { key_val } from '$lib/stores/ae_stores';
|
||||
// li = list
|
||||
// kv = key value list
|
||||
|
||||
// Updated 2024-09-25
|
||||
/**
|
||||
* Archive - A collection of archival content
|
||||
* Related Files:
|
||||
* - src/lib/ae_archives/ae_archives__archive.ts (API)
|
||||
* - src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte (View)
|
||||
* - src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte (Search List View)
|
||||
*/
|
||||
export interface Archive {
|
||||
id: string;
|
||||
// id_random: string;
|
||||
@@ -65,7 +71,13 @@ export interface Archive {
|
||||
// archive_content_li?: null|[];
|
||||
}
|
||||
|
||||
// Updated 2024-09-25
|
||||
/**
|
||||
* Archive_Content - A single piece of content within an archive
|
||||
* Related Files:
|
||||
* - src/lib/ae_archives/ae_archives__archive_content.ts (API)
|
||||
* - src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte (List View)
|
||||
* - src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte (Edit View)
|
||||
*/
|
||||
export interface Archive_Content {
|
||||
id: string;
|
||||
// id_random: string;
|
||||
|
||||
Reference in New Issue
Block a user