diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-20 15:15:14 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-20 15:15:14 +0300 |
commit | 4b7a00080caadcba009b4767f7756bc208b5d089 (patch) | |
tree | 3746d62dcf1b4efba74cfa4cc3d53521057eec1c /dist/types | |
parent | a56871131a5dd353122e5a55061cd862895f8076 (diff) | |
download | webos-service-types-4b7a00080caadcba009b4767f7756bc208b5d089.tar.xz webos-service-types-4b7a00080caadcba009b4767f7756bc208b5d089.zip |
Finished class "ActivityManager" structure
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'dist/types')
-rw-r--r-- | dist/types/index.d.ts | 18 |
1 files changed, 18 insertions, 0 deletions
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; +} |