mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
18 lines
523 B
Text
18 lines
523 B
Text
namespace ServoApp
|
|
{
|
|
[default_interface]
|
|
runtimeclass BrowserPage : Windows.UI.Xaml.Controls.Page
|
|
{
|
|
BrowserPage();
|
|
Windows.Foundation.Collections.IObservableVector<IInspectable> ConsoleLogs{ get; };
|
|
}
|
|
|
|
runtimeclass ConsoleLog
|
|
{
|
|
ConsoleLog(Windows.UI.Color glyphColor, String glyph, String body, String source);
|
|
Windows.UI.Xaml.Media.SolidColorBrush GlyphColor{ get; };
|
|
String Glyph{ get; };
|
|
String Body{ get; };
|
|
String Source{ get; };
|
|
}
|
|
}
|