UNPKG

424 BTypeScriptView Raw
1import { ModuleFn } from '../index';
2export interface ReleaseNotes {
3 success?: boolean;
4 currentVersion?: string;
5 showOnFirstLaunch?: boolean;
6}
7export interface SubAPI {
8 releaseNotesVersion: () => string;
9 setDidViewReleaseNotes: () => void;
10 showReleaseNotesOnLaunch: () => boolean;
11}
12export interface SubState {
13 releaseNotesViewed: string[];
14}
15export declare const init: ModuleFn;