mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
673 B
24 lines
673 B
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; |
|
} |
|
declare module '@eslint-community/eslint-plugin-eslint-comments' { |
|
import type {Eslint} from 'eslint'; |
|
const plugin: Eslint.Plugin; |
|
export = plugin; |
|
}
|
|
|