import { ServerInfo } from '../../tools'; /** * The static data store. This store does not need to be observable, it contains only application-wide * static data. */ export default class SdataStore { readonly serverInfo: ServerInfo; readonly captchaKey: string; /** * Create the store. * * @param serverInfo - Information about server,. * @param captchaKey - The site key for the captcha. */ constructor(serverInfo: ServerInfo, captchaKey: string); }