UNPKG

946 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright (c) 2021 The Polymer Project Authors. All rights reserved. This
4 * code may only be used under the BSD style license found at
5 * http://polymer.github.io/LICENSE.txt The complete set of authors may be found
6 * at http://polymer.github.io/AUTHORS.txt The complete set of contributors may
7 * be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by
8 * Google as part of the polymer project is also subject to an additional IP
9 * rights grant found at http://polymer.github.io/PATENTS.txt
10 */
11
12// When building externally, this file is always assumed to be a module, but by
13// default it isn't when building internally, so we need this export statement.
14export {};
15
16declare global {
17 interface CustomElementRegistry {
18 forcePolyfill?: boolean;
19 polyfillWrapFlushCallback?(outer: (fn: () => void) => void): void;
20 noDocumentConstructionObserver?: boolean;
21 shadyDomFastWalk?: boolean;
22 }
23}
24
\No newline at end of file