From 282c29564a715e4a952b63f4e69d96f5ea633e73 Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Mon, 3 Jul 2023 20:58:09 +0200 Subject: [PATCH] feat: Add an any type for strapi.admin --- packages/core/strapi/lib/types/core/strapi/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/core/strapi/lib/types/core/strapi/index.d.ts b/packages/core/strapi/lib/types/core/strapi/index.d.ts index 88e0a5c5f9..1b0750db6d 100644 --- a/packages/core/strapi/lib/types/core/strapi/index.d.ts +++ b/packages/core/strapi/lib/types/core/strapi/index.d.ts @@ -45,6 +45,11 @@ export interface Strapi { */ readonly config: any; + /** + * Getter for the Strapi admin container + */ + readonly admin: any; + /** * Getter for the Strapi auth container */