SysProM
    Preparing search index...

    Variable TextConst

    Text: ZodUnion<readonly [ZodString, ZodArray<ZodString>]> & {
        is(value: unknown): value is string | string[];
    } = ...

    Zod schema for flexible text content — accepts either a single string or an array of lines. Includes a .is() type guard for runtime checks.