Scratch space for learning atproto app development
1export function ifString<T>(value: T): (T & string) | undefined { 2 if (typeof value === 'string') return value 3 return undefined 4}