Interface WorkspaceElementSpec

interface WorkspaceElementSpec {
    type: WorkspaceElementType;
    createSchema?: ZodObject<
        any,
        UnknownKeysParam,
        ZodTypeAny,
        { [key: string]: any },
        { [key: string]: any },
    >;
    updateSchema?: ZodObject<
        any,
        UnknownKeysParam,
        ZodTypeAny,
        { [key: string]: any },
        { [key: string]: any },
    >;
}

Properties

createSchema?: ZodObject<
    any,
    UnknownKeysParam,
    ZodTypeAny,
    { [key: string]: any },
    { [key: string]: any },
>
updateSchema?: ZodObject<
    any,
    UnknownKeysParam,
    ZodTypeAny,
    { [key: string]: any },
    { [key: string]: any },
>