aboutsummaryrefslogtreecommitdiff
path: root/dist/types/index.d.ts
blob: 4b749caff103b7a14ea945d0a82694b41318c7e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}