mirror of
https://github.com/mnaoumov/obsidian-insert-multiple-attachments.git
synced 2026-07-22 11:30:26 +00:00
chore: overexposed
Drop unnecessary exports on file-local constructor params interfaces flagged by the over-exposure linter.
This commit is contained in:
parent
c5754c0072
commit
8e82707189
3 changed files with 3 additions and 3 deletions
|
|
@ -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>;
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import {
|
|||
|
||||
import type { PluginSettings } from './plugin-settings.ts';
|
||||
|
||||
export interface InsertAttachmentsControlConstructorParams {
|
||||
interface InsertAttachmentsControlConstructorParams {
|
||||
readonly app: App;
|
||||
|
||||
readonly editor: Editor;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue