@ebarooni/capacitor-calendar
    Preparing search index...

    Interface UpdateRemindersListOptions

    8.2.0

    interface UpdateRemindersListOptions {
        color?:
            | "blue"
            | "brown"
            | "gray"
            | "green"
            | "indigo"
            | "orange"
            | "pink"
            | "purple"
            | "red"
            | "teal"
            | "yellow";
        commit?: boolean;
        id: string;
        title?: string;
    }
    Index

    Properties

    Properties

    color?:
        | "blue"
        | "brown"
        | "gray"
        | "green"
        | "indigo"
        | "orange"
        | "pink"
        | "purple"
        | "red"
        | "teal"
        | "yellow"

    The new color of the list. If omitted, the color is left unchanged.

    'indigo'
    

    iOS

    8.1.0

    commit?: boolean

    Whether to save the update to the event store immediately. Pass false to batch multiple changes and commit them together using eventStore.commit(), which is more efficient than committing each save individually.

    true
    

    iOS

    8.2.0

    id: string

    The identifier of the list to update.

    'A1234567-ABCD-EFGH-IJKL-MNOPQRSTUVWX'
    

    iOS

    8.2.0

    title?: string

    The new title of the list. If omitted, the title is left unchanged.

    'Groceries'
    

    iOS

    8.2.0