UNPKG

@freemework/hosting

Version:

Hosting library of the Freemework Project.

37 lines 1.11 kB
import { FConfiguration } from "@freemework/common"; export class FConfigurationCommandLine extends FConfiguration { get sourceURI() { throw new Error("Method not implemented."); } get namespaceFull() { throw new Error("Method not implemented."); } get namespaceParent() { throw new Error("Method not implemented."); } get keys() { throw new Error("Method not implemented."); } getArray(_key, _indexesName) { throw new Error("Method not implemented."); } getNamespace(_namespaceFull) { throw new Error("Method not implemented."); } get(_key, _defaultData) { throw new Error("Method not implemented."); } findNamespace(_namespaceFull) { throw new Error("Method not implemented."); } find(_key) { throw new Error("Method not implemented."); } hasNamespace(_namespaceFull) { throw new Error("Method not implemented."); } has(_key) { throw new Error("Method not implemented."); } } //# sourceMappingURL=FConfigurationCommandLine.js.map