@willwade/aac-processors
    Preparing search index...

    Type Alias AACPageMutation

    AACPageMutation:
        | { button: AACButton; type: "addButton" }
        | { buttonId: string; type: "removeButton" }
        | { buttonId: string; patch: Partial<AACButton>; type: "updateButton" }
        | { item: AACWordListItem; type: "addWordListItem" }
        | {
            match: string | ((item: AACWordListItem) => boolean);
            type: "removeWordListItem";
        }
        | { type: "clearWordList" }

    Mutation types for page modifications