UNPKG

@mesh-tech/mesh-cli

Version:

CLI for Mesh platform development utilities

13 lines (12 loc) 557 B
import { z } from "zod"; export declare const RESERVED_SEGMENTS: readonly string[]; export declare const docsJsonSchema: z.ZodObject<{ title: z.ZodString; order: z.ZodDefault<z.ZodNumber>; slug: z.ZodOptional<z.ZodString>; include: z.ZodDefault<z.ZodArray<z.ZodString>>; }, z.core.$strict>; export type DocsJson = z.infer<typeof docsJsonSchema>; export declare function isReservedSegment(segment: string): boolean; export declare function hasReservedSegment(relPath: string): boolean; export declare function slugify(value: string): string;