UNPKG

@theia/core

Version:

Theia is a cloud & desktop IDE framework implemented in TypeScript.

24 lines 597 B
import React = require('react'); export declare type MessageType = keyof AlertMessageIcon; interface AlertMessageIcon { INFO: string; SUCCESS: string; WARNING: string; ERROR: string; } declare const AlertMessageIcon: { INFO: string; SUCCESS: string; WARNING: string; ERROR: string; }; export interface AlertMessageProps { type: MessageType; header: string; children?: React.ReactNode; } export declare class AlertMessage extends React.Component<AlertMessageProps> { render(): React.ReactNode; } export {}; //# sourceMappingURL=alert-message.d.ts.map