mirror of
https://github.com/go-gitea/gitea.git
synced 2026-01-16 17:10:36 +00:00
- Update JS and PY dependencies - Workaround https://github.com/stylelint/stylelint/issues/8893 by moving the stylint config file to JS - Regenerate SVGs - Bump to python 3.14 in devcontainer and actions - Verified `@github/text-expander-element` - Removed obsolete type stub
20 lines
516 B
TypeScript
20 lines
516 B
TypeScript
declare module '@techknowlogick/license-checker-webpack-plugin' {
|
|
const plugin: any;
|
|
export = plugin;
|
|
}
|
|
declare module 'eslint-plugin-no-use-extend-native' {
|
|
import type {Eslint} from 'eslint';
|
|
const plugin: Eslint.Plugin;
|
|
export = plugin;
|
|
}
|
|
declare module 'eslint-plugin-array-func' {
|
|
import type {Eslint} from 'eslint';
|
|
const plugin: Eslint.Plugin;
|
|
export = plugin;
|
|
}
|
|
declare module 'eslint-plugin-github' {
|
|
import type {Eslint} from 'eslint';
|
|
const plugin: Eslint.Plugin;
|
|
export = plugin;
|
|
}
|