@amsterdam/bmi-component-library
Version:
A React component library based on ASC and Material-UI aimed at repurposing and sharing components across BMI projects
15 lines • 374 B
TypeScript
import type { FC } from 'react';
type Props = {
uri: string;
onFailure?: (e: Error) => void;
currentFilename?: string;
};
export type DocumentState = {
loading: boolean;
filename?: string;
error?: string;
contentType?: string;
};
declare const DocumentViewer: FC<Props>;
export default DocumentViewer;
//# sourceMappingURL=DocumentViewer.d.ts.map