SORU
2 EKİM 2012, Salı


TypeScript KnockoutJS ile

KnockoutJS ile TypeScript kullanarak herhangi bir örnek var mı? Sadece birlikte çalışmak nasıl olacağını merak ediyorum?

Edit

Ben ne burada, iş gibi görünüyor

declare var ko: any;
declare var $: any;
class ViewModel {
    x = ko.observable(10);
    y = ko.observable(10);

}

$(() => {
    ko.applyBindings(new ViewModel());
});

Bu aşağıdaki Javascript içine oluşturur:

var ViewModel = (function () {
    function ViewModel() {
        this.x = ko.observable(10);
        this.y = ko.observable(10);
    }
    return ViewModel;
})();
$(function () {
    ko.applyBindings(new ViewModel());
});

CEVAP
26 EKİM 2012, Cuma


DefinitelyTyped bak.

Popüler JavaScript kütüphaneleri için "TypeScript tür tanımları depo"

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • How Things Are Made

    How Things A

    17 HAZİRAN 2008
  • Modus Recordings

    Modus Record

    26 Kasım 2008
  • theavettbrothers

    theavettbrot

    9 ŞUBAT 2007