Select the types of activity you want to include in your feed.
1declare module 'constants' { 2 const constants: Record<string, number>; 3 export = constants; 4} 5 6declare module 'ant:constants' { 7 export * from 'constants'; 8} 9 10declare module 'node:constants' { 11 export * from 'constants'; 12}