@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
13 lines (12 loc) • 473 B
TypeScript
import GlobalConfigService from './globalConfigService';
export default class GithubService {
private _globalConfigService;
constructor(_globalConfigService: GlobalConfigService);
getNewExtensionVersion(): Promise<string>;
/**
* Get last unread message from developers
* @returns message as string or null if there is no message or it's mark as read
*/
getDevMessage(): Promise<string>;
hideDevMessage(text: string): Promise<void>;
}