the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 1241cd4e999bb3f48dca4cab7bcff14fe6f5d6ad 13 lines 289 B view raw
1/** 2 * GENERATED CODE - DO NOT MODIFY 3 */ 4export function isObj(v: unknown): v is Record<string, unknown> { 5 return typeof v === "object" && v !== null; 6} 7 8export function hasProp<K extends PropertyKey>( 9 data: object, 10 prop: K, 11): data is Record<K, unknown> { 12 return prop in data; 13}