From 37aca87479f272a2a35879128440abad5b7cbeca Mon Sep 17 00:00:00 2001 From: trickypr <23250792+trickypr@users.noreply.github.com> Date: Sat, 18 Nov 2023 16:51:57 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84=20License=20headers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/contentAreaUtils.d.ts | 4 ++++ src/content/globalOverlay.d.ts | 4 ++++ src/content/shared/contextMenus/menuItems.ts | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/src/content/contentAreaUtils.d.ts b/src/content/contentAreaUtils.d.ts index 8e782aa..26aaa4b 100644 --- a/src/content/contentAreaUtils.d.ts +++ b/src/content/contentAreaUtils.d.ts @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + declare function urlSecurityCheck( url: string | nsIURIType, principal: nsIPrincipalType, diff --git a/src/content/globalOverlay.d.ts b/src/content/globalOverlay.d.ts index 9abbf37..136516d 100644 --- a/src/content/globalOverlay.d.ts +++ b/src/content/globalOverlay.d.ts @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + declare function closeWindow(aClose, aPromptFunction, aSource) /** diff --git a/src/content/shared/contextMenus/menuItems.ts b/src/content/shared/contextMenus/menuItems.ts index 72c6bd5..63260f9 100644 --- a/src/content/shared/contextMenus/menuItems.ts +++ b/src/content/shared/contextMenus/menuItems.ts @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + import curry from 'fnts/curry' import type { MenuItemAction, VisibilityCheck } from '.'