@atlaskit/object
Version:
An object is an icon that represents an Atlassian-specific content type.
23 lines (22 loc) • 602 B
TypeScript
/**
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
* @codegen <<SignedSource::c873348ffc71e78274a37c55639f426a>>
* @codegenCommand yarn build-glyphs
*/
interface ComponentMetadata {
componentName: string;
package: string;
packageLoader: () => Promise<{
default: React.ComponentType<any>;
}>;
}
interface ObjectMetadata {
keywords: string[];
color: string;
icon: string;
iconPackage: string;
object: ComponentMetadata;
tile: ComponentMetadata;
}
export declare const metadata: Record<string, ObjectMetadata>;
export {};