obsidian-dev-utils
Version:
This is the collection of useful functions that you can use for your Obsidian plugin development
43 lines (42 loc) • 1.27 kB
text/typescript
/**
* @packageDocumentation
*
* Contains a component that displays and edits multiple files.
*/
import { TypedTextComponent } from './TypedTextComponent.mjs';
/**
* A component that displays and edits multiple files.
*
* You can add this component using {@link SettingEx.addMultipleFile}.
*
* In order to add the styles for the component, use {@link initPluginContext} in your plugin's `onload()` function.
*
* Alternatively, you can copy styles from {@link https://github.com/mnaoumov/obsidian-dev-utils/releases/latest/download/styles.css}.
*/
export declare class MultipleFileComponent extends TypedTextComponent<readonly File[]> {
/**
* Creates a new multiple file component.
*
* @param containerEl - The container element of the component.
*/
constructor(containerEl: HTMLElement);
/**
* Gets the value of the component.
*
* @returns The value of the component.
*/
getValue(): readonly File[];
/**
* Converts a string to a file.
*
* @returns The file.
*/
valueFromString(): readonly File[];
/**
* Converts a file to a string.
*
* @param value - The file to convert.
* @returns The string.
*/
valueToString(value: readonly File[]): string;
}