0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-29 00:51:25 +03:00

19 lines
383 B
TypeScript
Raw Normal View History

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