blob: 768a5c5308a71605a6b9e524e0afdb2305ae0c56 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://notifications.spec.whatwg.org/#service-worker-api
[
Exposed=ServiceWorker,
RuntimeEnabled=Notifications
] interface NotificationEvent : ExtendableEvent {
constructor(DOMString type, NotificationEventInit eventInitDict);
[ImplementedAs=getNotification] readonly attribute Notification notification;
readonly attribute DOMString action;
readonly attribute DOMString? reply;
};