This commit is contained in:
Alessio Gravili
2025-09-01 22:24:37 -07:00
parent 4b9a5ae7c2
commit 5f7331cbe4
6 changed files with 53 additions and 55 deletions

View File

@@ -287,6 +287,8 @@ export { Warning as WarningIcon } from '../../providers/ToastContainer/icons/War
export {
type RenderDocumentResult,
type RenderDocumentServerFunction,
ServerFunctionsContext,
type ServerFunctionsContextType,
ServerFunctionsProvider,
useServerFunctions,
} from '../../providers/ServerFunctions/index.js'

View File

@@ -100,7 +100,7 @@ type GetFolderResultsComponentAndDataClient = (
} & Omit<GetFolderResultsComponentAndDataArgs, 'req'>,
) => ReturnType<typeof getFolderResultsComponentAndDataHandler>
type ServerFunctionsContextType = {
export type ServerFunctionsContextType = {
copyDataFromLocale: CopyDataFromLocaleClient
getDocumentSlots: GetDocumentSlots
getFolderResultsComponentAndData: GetFolderResultsComponentAndDataClient