mirror of
https://github.com/valentineus/webos-service-types.git
synced 2025-07-01 08:30:26 +03:00
Finished class "ActivityManager" structure
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
18
dist/types/index.d.ts
vendored
Normal file
18
dist/types/index.d.ts
vendored
Normal file
@ -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;
|
||||
}
|
Reference in New Issue
Block a user