mirror of
https://github.com/mickael-kerjean/filestash
synced 2026-01-02 13:57:00 +01:00
14 lines
No EOL
274 B
TypeScript
14 lines
No EOL
274 B
TypeScript
interface Config {
|
|
[key: string]: any;
|
|
thumbnailer: string[];
|
|
}
|
|
|
|
export function init(): Promise<Config>;
|
|
|
|
export function get(): Config;
|
|
|
|
export function get<T>(key: string, defaultValue?: T): T;
|
|
|
|
export function getVersion(): string;
|
|
|
|
export function query(): any; |