@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
14 lines • 528 B
TypeScript
import { IPropertyPaneCustomFieldProps } from '@microsoft/sp-property-pane';
import { MessageBarType } from '@fluentui/react/lib/MessageBar';
export interface IPropertyFieldMessageProps {
key: string;
text: string;
messageType: MessageBarType;
truncate?: boolean;
multiline?: boolean;
className?: string;
isVisible: boolean;
}
export interface IPropertyFieldMessagePropsInternal extends IPropertyFieldMessageProps, IPropertyPaneCustomFieldProps {
}
//# sourceMappingURL=IPropertyFieldMessage.d.ts.map