@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
10 lines • 399 B
TypeScript
import { IPropertyPaneCustomFieldProps } from '@microsoft/sp-property-pane';
export interface IPropertyFieldPasswordProps {
key: string;
value: string;
label?: string;
onChanged?: (newValue: any) => void;
}
export interface IPropertyFieldPasswordPropsInternal extends IPropertyFieldPasswordProps, IPropertyPaneCustomFieldProps {
}
//# sourceMappingURL=IPropertyFieldPassword.d.ts.map