@freemework/hosting
Version:
Hosting library of the Freemework Project.
7 lines (6 loc) • 498 B
TypeScript
import { FConfigurationDictionary } from "@freemework/common";
export declare class FConfigurationToml extends FConfigurationDictionary {
static fromFile(tomlConfigFile: string, arrayIndexKey?: string, arrayIndexesKey?: string): Promise<FConfigurationToml>;
static factory(tomlDocument: string, arrayIndexKey?: string, arrayIndexesKey?: string): Promise<FConfigurationToml>;
protected constructor(sourceURI: URL, tomlDocument: string, arrayIndexKey: string, arrayIndexesKey: string);
}