chore: overexposed

Drop unnecessary exports on file-local constructor params interfaces
flagged by the over-exposure linter.
This commit is contained in:
Michael Naumov 2026-06-24 01:39:57 -06:00
parent c5754c0072
commit 8e82707189
3 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ import type { PluginSettings } from '../plugin-settings.ts';
import { InsertAttachmentsControl } from '../insert-attachments-control.ts';
export interface InvokeCommandHandlerConstructorParams {
interface InvokeCommandHandlerConstructorParams {
readonly app: App;
getPluginSettings(): ReadonlyDeep<PluginSettings>;

View file

@ -12,7 +12,7 @@ import {
import type { PluginSettings } from './plugin-settings.ts';
export interface InsertAttachmentsControlConstructorParams {
interface InsertAttachmentsControlConstructorParams {
readonly app: App;
readonly editor: Editor;

View file

@ -5,7 +5,7 @@ import { PluginSettingsComponentBase } from 'obsidian-dev-utils/obsidian/compone
import { PluginSettings } from './plugin-settings.ts';
export interface PluginSettingsComponentConstructorParams {
interface PluginSettingsComponentConstructorParams {
readonly dataHandler: DataHandler;
readonly pluginEventSource: PluginEventSource;
}