Files
starface-outlook-sync-addin/node_modules/@fluentui/react/lib-commonjs/components/DocumentCard/DocumentCardImage.base.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

18 lines
592 B
TypeScript

import * as React from 'react';
import type { IDocumentCardImageProps } from './DocumentCardImage.types';
import type { JSXElement } from '@fluentui/utilities';
export interface IDocumentCardImageState {
readonly imageHasLoaded: boolean;
}
/**
* {@docCategory DocumentCard}
*/
export declare class DocumentCardImageBase extends React.Component<IDocumentCardImageProps, IDocumentCardImageState> {
private _classNames;
constructor(props: IDocumentCardImageProps);
render(): JSXElement;
private _onImageLoad;
private _renderCenterIcon;
private _renderCornerIcon;
}