aboutsummaryrefslogtreecommitdiff
path: root/dist/types
diff options
context:
space:
mode:
Diffstat (limited to 'dist/types')
-rw-r--r--dist/types/index.d.ts18
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;
+}