@forge/bridge

5.15.2-next.0-experimental-5b726e65.16.0-next.1
out/flag/flag.d.ts
~out/flag/flag.d.tsModified
+7
Index: package/out/flag/flag.d.ts
===================================================================
--- package/out/flag/flag.d.ts
+++ package/out/flag/flag.d.ts
@@ -10,9 +10,16 @@
 export interface FlagOptions {
     id: number | string;
     title?: string;
     description?: string;
+    /**
+     * `type` is used to determine the icon of Flag.
+     * If `appearance` is given, `type` is overriden to equal `appearance`.
+     */
     type?: FlagType;
+    /**
+     * When `appearance` is given, the Flag is bold. If not, it's a normal Flag.
+     */
     appearance?: FlagAppearance;
     actions?: FlagAction[];
     isAutoDismiss?: boolean;
 }