22 lines
795 B
TypeScript
22 lines
795 B
TypeScript
declare module '@typescript-eslint/utils' {
|
|
export * from '@typescript-eslint/utils/dist/index';
|
|
}
|
|
declare module '@typescript-eslint/typescript-estree' {
|
|
export * from '@typescript-eslint/typescript-estree/dist/index';
|
|
}
|
|
declare module '@typescript-eslint/type-utils' {
|
|
export * from '@typescript-eslint/type-utils/dist/index';
|
|
}
|
|
declare module '@typescript-eslint/utils/eslint-utils' {
|
|
export * from '@typescript-eslint/utils/dist/eslint-utils';
|
|
}
|
|
declare module '@typescript-eslint/utils/json-schema' {
|
|
export * from '@typescript-eslint/utils/dist/json-schema';
|
|
}
|
|
declare module '@typescript-eslint/scope-manager' {
|
|
export * from '@typescript-eslint/scope-manager/dist/index';
|
|
}
|
|
declare module '@typescript-eslint/types' {
|
|
export * from '@typescript-eslint/types/dist/index';
|
|
}
|