0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-29 00:51:25 +03:00
Valentin Popov 4b7a00080c
Finished class "ActivityManager" structure
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-20 16:15:14 +04:00

19 lines
383 B
TypeScript

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;
}