/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ import type { StrictReactDOMProps } from './StrictReactDOMProps'; export type StrictReactDOMAnchorProps = Readonly< Omit< StrictReactDOMProps, keyof ({ download?: null | undefined | string; href?: string; referrerPolicy?: | null | undefined | ( | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url' ); rel?: null | undefined | string; target?: null | undefined | ('_self' | '_blank' | '_parent' | '_top'); }) > & { download?: null | undefined | string; href?: string; referrerPolicy?: | null | undefined | ( | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url' ); rel?: null | undefined | string; target?: null | undefined | ('_self' | '_blank' | '_parent' | '_top'); } >;