LogoMap: {
clear(): void;
get(type: string, color: "white" | "black"): any;
register(type: string, sources: { black: any; white: any }): void;
registerMap(map: Map<string, { black: any; white: any }>): void;
snapshot(): Map<string, { black: any; white: any }>;
unregister(type: string): void;
} = ...
Type Declaration
clear: function
get: function
get(type: string, color: "white" | "black"): any Parameters
- type: string
- color: "white" | "black"
Returns any
register: function
register(type: string, sources: { black: any; white: any }): void Parameters
- type: string
- sources: { black: any; white: any }
Returns void
registerMap: function
registerMap(map: Map<string, { black: any; white: any }>): void Parameters
- map: Map<string, { black: any; white: any }>
Returns void
snapshot: function
snapshot(): Map<string, { black: any; white: any }> Returns Map<string, { black: any; white: any }>
unregister: function
unregister(type: string): void
Static logo map.