@jargon/platform-sdk-core
Version:
Core components of the Jargon Platform SDK for node.js
12 lines (11 loc) • 627 B
TypeScript
/// <reference types="node" />
import * as https from 'https';
import { JargonRemoteResourceManagerOptions } from './remote/jrrm';
import { Platform, ResourceManager, ResourceManagerFactory } from '.';
export { JargonRemoteResourceManagerOptions, JargonEndpoints } from './remote/jrrm';
export declare class JargonRemoteResourceManagerFactory implements ResourceManagerFactory {
protected _options: JargonRemoteResourceManagerOptions;
protected _agent: https.Agent;
constructor(_options: JargonRemoteResourceManagerOptions);
forLocaleAndPlatform(locale: string, platform: Platform): Promise<ResourceManager>;
}