A personal website powered by Astro and ATProto
1// Generated index of all lexicon types
2// Do not edit manually - regenerate with: npm run gen:types
3
4import type { AStatusUpdate } from './a-status-update';
5import type { ComWhtwndBlogEntry } from './com-whtwnd-blog-entry';
6import type { SocialGrainGalleryItem } from './social-grain-gallery-item';
7import type { SocialGrainGallery } from './social-grain-gallery';
8import type { SocialGrainPhotoExif } from './social-grain-photo-exif';
9import type { SocialGrainPhoto } from './social-grain-photo';
10
11// Union type for all generated lexicon records
12export type GeneratedLexiconUnion = AStatusUpdate | ComWhtwndBlogEntry | SocialGrainGalleryItem | SocialGrainGallery | SocialGrainPhotoExif | SocialGrainPhoto;
13
14// Type map for component registry
15export type GeneratedLexiconTypeMap = {
16 'AStatusUpdate': AStatusUpdate;
17 'ComWhtwndBlogEntry': ComWhtwndBlogEntry;
18 'SocialGrainGalleryItem': SocialGrainGalleryItem;
19 'SocialGrainGallery': SocialGrainGallery;
20 'SocialGrainPhotoExif': SocialGrainPhotoExif;
21 'SocialGrainPhoto': SocialGrainPhoto;
22};