1 | import { AbstractNode, IconDefinition } from '@ant-design/icons/lib/types';
|
2 | export declare function log(message: string): void;
|
3 | export declare function isIconDefinition(target: any): target is IconDefinition;
|
4 | export declare function normalizeAttrs(attrs?: Attrs): Attrs;
|
5 | export interface Attrs {
|
6 | [key: string]: string;
|
7 | }
|
8 | export declare class MiniMap<V> {
|
9 | readonly size: number;
|
10 | private collection;
|
11 | clear(): void;
|
12 | delete(key: string): boolean;
|
13 | get(key: string): V | undefined;
|
14 | has(key: string): boolean;
|
15 | set(key: string, value: V): this;
|
16 | }
|
17 | export declare function generate(node: AbstractNode, key: string, rootProps?: {
|
18 | [key: string]: any;
|
19 | } | false): any;
|
20 | export declare function getSecondaryColor(primaryColor: string): string;
|
21 | export declare function withSuffix(name: string, theme: 'fill' | 'outline' | 'twotone'): string;
|