UNPKG

@carbon/ibm-products

Version:

Carbon for IBM Products

25 lines (24 loc) 827 B
/** * Copyright IBM Corp. 2022, 2024 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import React, { ReactNode } from 'react'; export interface EditFullPageProps { /** * Provide an optional class to be applied to the containing node. */ className?: string; /** * Provide the contents of the EditFullPage. */ children: ReactNode; } /** * **This component is deprecated.** <br> * Use when settings on a page need to always be shown in edit mode, or when the context of the page is needed to make several changes. * See usage guidance for further details. * @deprecated */ export declare let EditFullPage: React.ForwardRefExoticComponent<EditFullPageProps & React.RefAttributes<HTMLDivElement>>;