blob: eb9f417855c54d3a3f55f9f9ed0efbce5173bb07 [file] [log] [blame]
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export {};
declare global {
// The current version of lib.dom.d.ts doesn't contains AriaMixin definition,
// so we have to add some of them ourself.
// https://developer.mozilla.org/en-US/docs/Web/API/Element#properties_included_from_aria
interface AriaMixin {
ariaLabel?: string;
}
interface Element extends AriaMixin {
ariaLabel: string;
}
}