@archastro/sdk
    Preparing search index...

    Variable scriptTestOutputEntrySchemaConst

    scriptTestOutputEntrySchema: ZodObject<
        {
            level: ZodOptional<ZodString>;
            line: ZodOptional<ZodNumber>;
            text: ZodString;
            timestamp: ZodOptional<ZodString>;
            values: ZodOptional<
                ZodArray<ZodType<{} | null, ZodTypeDef, {} | null>, "many">,
            >;
        },
        "strip",
        ZodTypeAny,
        {
            level?: string;
            line?: number;
            text: string;
            timestamp?: string;
            values?: ({} | null)[];
        },
        {
            level?: string;
            line?: number;
            text: string;
            timestamp?: string;
            values?: ({} | null)[];
        },
    > = ...

    Runtime validator for ScriptTestOutputEntry.