Add more properties into InstalledChannel type.

This commit is contained in:
Gan Eng Chin 2022-12-13 23:22:27 +08:00
parent e6e6dc19ef
commit f713c01f56
No known key found for this signature in database
GPG Key ID: 94D5D972860ADB01
1 changed files with 3 additions and 1 deletions

View File

@ -6,8 +6,10 @@ export type InstalledChannel = {
title: string;
description: string;
icon: string;
isSetupCompleted: boolean;
setupUrl: string;
manageUrl: string;
syncStatus: SyncStatusType;
issueType: IssueTypeType;
issueText: string;
manageUrl: string;
};