chromium/third_party/blink/renderer/modules/notifications/timestamp_trigger.idl

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Explainer: https://github.com/beverloo/notification-triggers

[
    Exposed=(Window,Worker),
    RuntimeEnabled=NotificationTriggers
] interface TimestampTrigger {
    constructor(DOMTimeStamp timestamp);
    readonly attribute DOMTimeStamp timestamp;
};