Skip to content

Instantly share code, notes, and snippets.

View oliverw's full-sized avatar
🎯
Focusing

Oliver Weichhold oliverw

🎯
Focusing
  • Berlin
  • 11:46 (UTC +02:00)
View GitHub Profile
@oliverw
oliverw / rx-dom.d.ts
Created October 26, 2015 14:28
rx-dom Typescript Definition
declare module Rx.DOM {
export interface AjaxSettings {
async?: boolean;
body?: string;
// This options does not seem to be used in the code yet
// contentType?: string;
crossDomain?: boolean;
headers?: any;
method?: string;
password?: string;
public class FooViewModel : ReactiveObject
{
DateTime dueDate;
public DateTime DueDate
{
get { return dueDate; }
set { this.RaiseAndSetIfChanged(ref dueDate, value); }
}
}