31 lines
970 B
TypeScript
31 lines
970 B
TypeScript
// @ts-types="./typedef/react@18.3.18.d.ts"
|
|
import * as React from './static/react-esm-18.3.1.static.js'
|
|
import * as ReactDOM from './static/react-dom-esm-18.3.1.static.js'
|
|
import * as CryptoES from './static/crypto-es-3.1.0.static.mjs'
|
|
|
|
import type { Dialog } from 'https://unpkg.com/mdui@2.1.4/components/dialog/index.d.ts'
|
|
import type { TextField } from 'https://unpkg.com/mdui@2.1.4/components/text-field/index.d.ts'
|
|
import type { Button } from 'https://unpkg.com/mdui@2.1.4/components/button/index.d.ts'
|
|
import type { NavigationRail } from 'https://unpkg.com/mdui@2.1.4/components/navigation-rail/navigation-rail.d.ts'
|
|
|
|
declare global {
|
|
namespace React {
|
|
namespace JSX {
|
|
interface IntrinsicAttributes {
|
|
id?: string
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export {
|
|
React,
|
|
ReactDOM,
|
|
CryptoES,
|
|
|
|
Dialog as MduiDialog,
|
|
TextField as MduiTextField,
|
|
Button as MduiButton,
|
|
NavigationRail as MduiNavigationRail,
|
|
}
|