diff --git a/client/landing/gutenboarding/tsconfig.json b/client/landing/gutenboarding/tsconfig.json index 3a36afc77906c..8f94e3b271361 100644 --- a/client/landing/gutenboarding/tsconfig.json +++ b/client/landing/gutenboarding/tsconfig.json @@ -17,5 +17,5 @@ } }, "files": [ "index.tsx" ], - "include": [] + "include": [ "./types.d.ts" ] } diff --git a/client/landing/gutenboarding/types.d.ts b/client/landing/gutenboarding/types.d.ts new file mode 100644 index 0000000000000..9ece1482cba87 --- /dev/null +++ b/client/landing/gutenboarding/types.d.ts @@ -0,0 +1,4 @@ +declare module '@wordpress/keyboard-shortcuts' { + type ShortcutProts = { children: JSX.Element }; + export function ShortcutProvider( props: ShortcutProts ): JSX.Element; +}