1/**
2 * TID (Timestamp ID) generation utilities
3 * Shared between client and server
4 *
5 * Uses the official ATProto TID implementation from @atproto/common-web
6 */ 7 8import{TID}from"@atproto/common-web"; 910exportfunctiongenerateTid():string{11returnTID.nextStr();12}