blob: 0eb36e480099c7df22212273d6279668178407df [file] [log] [blame]
// 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/WICG/web-app-launch/blob/main/launch_handler.md
// https://wicg.github.io/web-app-launch/#launchparams-interface
[
Exposed=Window,
RuntimeEnabled=WebAppLaunchQueue
] interface LaunchParams {
readonly attribute USVString targetURL;
readonly attribute FrozenArray<FileSystemHandle> files;
};