studiocms
Version:
Astro Native CMS for AstroDB. Built from the ground up by the Astro community.
12 lines (10 loc) • 328 B
TypeScript
import type { BasePluginHooks, StudioCMSPluginHook } from './schemas/plugins';
// The interfaces in this file can be extended by users
declare global {
namespace StudioCMS {
export interface PluginHooks extends BasePluginHooks {}
}
namespace Astro {
export interface IntegrationHooks extends StudioCMSPluginHook {}
}
}