From 4b7a00080caadcba009b4767f7756bc208b5d089 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 20 Feb 2020 16:15:14 +0400 Subject: Finished class "ActivityManager" structure Signed-off-by: Valentin Popov --- dist/types/index.d.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 dist/types/index.d.ts (limited to 'dist/types/index.d.ts') diff --git a/dist/types/index.d.ts b/dist/types/index.d.ts new file mode 100644 index 0000000..4b749ca --- /dev/null +++ b/dist/types/index.d.ts @@ -0,0 +1,18 @@ +export interface IActivitySpec { + readonly activity: IActivity; + readonly replace?: boolean; + readonly start?: boolean; + readonly subscribe?: boolean; +} + +export interface IActivity { + readonly description: string; + readonly name: string; + readonly type?: IType; +} + +export interface IType { + readonly explicit?: boolean; + readonly foreground?: boolean; + readonly persist?: boolean; +} -- cgit v1.2.3