UNPKG

@microsoft/sp-webpart-base

Version:

SharePoint Framework support for building web parts

18 lines 405 B
/** * Interface of ErrorMessage. */ export interface IErrorMessageProps { /** * Error message to be rendered by webpart. */ errorMessage: string; } /** * The error component used for rendering webpart errors. */ export default class ErrorMessage { private _props; constructor(props: IErrorMessageProps); render(): HTMLElement; } //# sourceMappingURL=ErrorMessage.d.ts.map