@propriety/court-calendar 1.0.93 → 1.0.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ import { ReactNode } from 'react';
2
+ interface DocCardProps {
3
+ url: string | null;
4
+ footer: ReactNode;
5
+ highlighted?: boolean;
6
+ }
7
+ export default function DocCard({ url, footer, highlighted }: DocCardProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,4 @@
1
+ import { Exhibit } from '../../../types';
2
+ export default function ExhibitsSection({ exhibits }: {
3
+ exhibits: Exhibit[] | null;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { MouseEvent } from 'react';
2
+ export declare function openDocument(url: string): Promise<void>;
3
+ export declare function downloadDocument(e: MouseEvent, url: string): Promise<void>;