the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

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

at c9be6f8f91a3d26d093277fdc76e2005809c878f 13 lines 287 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}