UNPKG

303 BTypeScriptView Raw
1import * as React from 'react';
2/** Displays the extension's configuration state (not added, added and enabled, added and disabled). */
3export declare const ExtensionConfigurationState: React.SFC<{
4 isAdded: boolean;
5 isEnabled: boolean;
6 enabledIconOnly?: boolean;
7 className?: string;
8}>;