@propriety/court-calendar 1.0.98 → 1.0.100

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.
@@ -1,4 +1,5 @@
1
1
  import { Evidence } from '../../../types';
2
- export default function EvidenceSection({ evidence }: {
2
+ export default function EvidenceSection({ evidence, isVillage }: {
3
3
  evidence: Evidence | null;
4
+ isVillage: boolean;
4
5
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
1
  import { MouseEvent } from 'react';
2
2
  export declare function openDocument(url: string): Promise<void>;
3
+ export declare function printDocument(e: MouseEvent, url: string): Promise<void>;
3
4
  export declare function downloadDocument(e: MouseEvent, url: string): Promise<void>;