import type { IClientSideExtensionManifest } from './IClientSideExtensionManifest'; /** * This is the manifest for a client-side extension that renders a custom form * in place of the default SharePoint list form. * * @public */ export interface IFormCustomizerExtensionManifest extends IClientSideExtensionManifest { /** * {@inheritDoc IClientSideExtensionManifest.extensionType} */ extensionType: 'FormCustomizer'; /** * When true, the form customizer opts into being rendered inside the new/edit/display * panel in the list view instead of opening a separate page. * * @remarks * If absent or false, the existing behavior is preserved (form opens in a new tab * or separate page). */ isPanelExperienceEnabled?: boolean; } //# sourceMappingURL=IFormCustomizerExtensionManifest.d.ts.map