Accessible code

Notification = function (title, description, type)
    -- types are success and error
    lib.notify({
        title = title,
        description = description,
        type = type
    })
end

Last updated