coldbydefault-portfolio
    Preparing search index...

    Interface BlogAdminAction

    interface BlogAdminAction {
        action:
            | "create"
            | "delete"
            | "update"
            | "publish"
            | "unpublish"
            | "feature"
            | "unfeature";
        blogId?: string;
        data?: unknown;
    }
    Index

    Properties

    Properties

    action:
        | "create"
        | "delete"
        | "update"
        | "publish"
        | "unpublish"
        | "feature"
        | "unfeature"
    blogId?: string
    data?: unknown