From 4473453e107beb3ee579ba7b4d202b8de02a00e5 Mon Sep 17 00:00:00 2001 From: takker99 <37929109+takker99@users.noreply.github.com> Date: Tue, 24 Dec 2024 16:16:25 +0900 Subject: [PATCH] fix(REST API): `init` in `importPages` can be optional. --- rest/page-data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/page-data.ts b/rest/page-data.ts index 84d9850..13d43e2 100644 --- a/rest/page-data.ts +++ b/rest/page-data.ts @@ -33,7 +33,7 @@ export type ImportPagesError = HTTPError; export const importPages = async ( project: string, data: ImportedData, - init: ExtendedOptions, + init?: ExtendedOptions, ): Promise< Result > => {