Membrane SDK - v0.8.0
    Preparing search index...

    Variable BaseScreenConst

    BaseScreen: ZodObject<
        {
            type: ZodEnum<typeof ScreenType>;
            key: ZodOptional<ZodString>;
            blocks: ZodArray<
                ZodIntersection<
                    ZodObject<{ type: ZodEnum<typeof ScreenBlockType> }, $strip>,
                    ZodRecord<ZodString, ZodAny>,
                >,
            >;
            id: ZodString;
            name: ZodString;
        },
        $strip,
    > = ...