@milaboratories/uikit 1.2.15 → 1.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,6 +32,7 @@ export type ListOptionNormalized<T = unknown> = {
32
32
  description?: string;
33
33
  value: T;
34
34
  };
35
+ export type ListOptionType<Type> = Type extends ListOption<infer X>[] ? X : never;
35
36
  export declare const maskIcons16: readonly ["checkmark", "import", "clear", "chevron-right", "add", "play", "loading", "arrow-right", "clipboard", "link", "comp", "close", "restart", "stop", "settings-2"];
36
37
  export type MaskIconName16 = (typeof maskIcons16)[number];
37
38
  export declare const maskIcons24: string[];