adapters/react/RuiSkipLinksReact/src/IRuiSkipLinks.tsx (10 lines of code) (raw):

/** * Copyright Deloitte Digital 2019 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ /* eslint import/prefer-default-export: 0 */ declare global { namespace JSX { interface IntrinsicElements { // eslint-disable-line @typescript-eslint/interface-name-prefix 'rui-skip-links': any; } } } export interface IRuiSkipLinksProps { children?: JSX.Element[] | JSX.Element; }