/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages-internal/core-docs/src/webpack/index.ts
25 строк
576 B
Brijesh Bittu
[code-infra] Setup workflow to publish internal packages (#47952)
02 апр 2026, 19:42
Не верифицирован
02 апр 2026, 19:42
d7d328c
Код
Авторство
О чём код?
/** * Type declarations for webpack's require.context() API. * * Usage: import '@mui/internal-core-docs/webpack' in a .d.ts or at the top of a file, * or add to tsconfig "types". */ export interface WebpackRequireContext { (req: string): string; keys: () => string[]; } declare global { // eslint-disable-next-line @typescript-eslint/no-namespace namespace NodeJS { interface Require { context( directory: string, useSubdirectories?: boolean, regExp?: RegExp, mode?: string, ): WebpackRequireContext; } } }