Updated events/sessions pages. Added DateDistance component.

This commit is contained in:
Mike Cao 2025-06-30 21:34:56 -07:00
parent 8b64029409
commit 5b300f1ff5
13 changed files with 44 additions and 35 deletions

View file

@ -29,7 +29,7 @@ export interface PageResult<T> {
sortDescending?: boolean;
}
export interface PagedQueryResult<T> {
export interface PagedQueryResult<T = any> {
result: PageResult<T>;
query: any;
params: PageParams;