UNPKG

@localazy/strapi-plugin

Version:

The official Strapi Plugin by Localazy.

27 lines (26 loc) 675 B
import type { Core } from '@strapi/strapi'; declare const getStrapiStore: (strapi: Core.Strapi) => { get(params?: Partial<{ key: string; type?: string; environment?: string; name?: string; tag?: string; }>): Promise<unknown>; set(params?: Partial<{ key: string; value: unknown; type?: string; environment?: string; name?: string; tag?: string; }>): Promise<void>; delete(params?: Partial<{ key: string; type?: string; environment?: string; name?: string; tag?: string; }>): Promise<void>; }; export default getStrapiStore;