]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/types/query-params.ts
Merge branch 'main' into breakout-role-utils
[lemmy-ui.git] / src / shared / utils / types / query-params.ts
1 export type QueryParams<T extends Record<string, any>> = {
2   [key in keyof T]?: string;
3 };