3 Temmuz 2019 Çarşamba

import Statement

Belirtilen Sınıfları Import Etmek
Açıklaması şöyle.
This is valid but they will be imported into the current scope instead of a namespace.
Örnek
Şöyle yaparız.
import {Observable, Subject} from 'rxjs'
Örnek
Şöyle yaparız.
export const ArrDurion = (...)
Şöyle yaparız.
import { ArrDurion } from 'ArrDurion';
Her Şeyi İmport Etmek
Namespace ile import edilir.
Örnek
Şöyle yaparız.
import * as Rx from 'rxjs'

Hiç yorum yok:

Yorum Gönder