pxt-core
Version:
Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors
13 lines (12 loc) • 349 B
TypeScript
export interface ExtensionCardProps<U> {
title: string;
description: string;
imageUrl?: string;
learnMoreUrl?: string;
label?: string;
onClick?: (value: U) => void;
extension?: U;
loading?: boolean;
showDisclaimer?: boolean;
}
export declare const ExtensionCard: <U>(props: ExtensionCardProps<U>) => JSX.Element;