observable.d.ts 250 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 /** Symbol.observable addition */ declare global { interface SymbolConstructor { readonly observable: symbol; } } /** Symbol.observable or a string "@@observable". Used for interop */ export declare const observable: string | symbol;