1/** 2 * TID (Timestamp ID) generation utilities 3 * Uses the official ATProto TID implementation 4 */ 5 6import { TID } from '@atproto/common-web'; 7 8export function generateTid(): string { 9 return TID.nextStr(); 10}