Suite of AT Protocol TypeScript libraries built on web standards
20
fork

Configure Feed

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

fix: lint error

+2 -1
+2 -1
lex/external.ts
··· 359 359 return new ParamsSchema<P>(properties); 360 360 } 361 361 362 - export const paramsSchema: ParamsSchema<{}> = new ParamsSchema({}); 362 + export const paramsSchema: ParamsSchema<Record<PropertyKey, never>> = 363 + new ParamsSchema({}); 363 364 364 365 export function payload< 365 366 const E extends string | undefined = undefined,