adapters/react/RuiAlertReact/src/IRuiAlert.tsx (11 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 */ import {ReactNode} from 'react'; declare global { namespace JSX { interface IntrinsicElements { // eslint-disable-line @typescript-eslint/interface-name-prefix 'rui-alert': any; } } } export interface IRuiAlert { children: ReactNode; }