lint: code

This commit is contained in:
Kamil Moskała
2026-03-26 18:13:55 +01:00
parent 9bce20ea7a
commit c70fd5ce74
2 changed files with 5 additions and 2 deletions
+1
View File
@@ -5,4 +5,5 @@ module.exports = {
tsconfigRootDir: __dirname,
project: true,
},
ignorePatterns: ["web/webpack.config.js", "index.web.js"],
};
@@ -1,7 +1,9 @@
import type { HybridObject } from 'react-native-nitro-modules';
export interface PluginManager
extends HybridObject<{ ios: 'swift'; android: 'kotlin' }> {
export interface PluginManager extends HybridObject<{
ios: 'swift';
android: 'kotlin';
}> {
enable(): void;
disable(): void;
readonly isEnabled: boolean;