strapi-plugin-app-version
Version:
This plugin displays the version in the Strapi settings
17 lines (16 loc) • 362 B
TypeScript
import { z } from 'zod';
declare const configSchema: z.ZodObject<{
version: z.ZodString;
}, "strip", z.ZodTypeAny, {
version: string;
}, {
version: string;
}>;
export type Config = z.infer<typeof configSchema>;
declare const _default: {
default: {
version: string;
};
validator(config: unknown): void;
};
export default _default;