1 |
3a515b92
|
cagy
|
declare const observableSymbol: symbol;
|
2 |
|
|
export default observableSymbol;
|
3 |
|
|
|
4 |
|
|
declare global {
|
5 |
|
|
export interface SymbolConstructor {
|
6 |
|
|
readonly observable: symbol;
|
7 |
|
|
}
|
8 |
|
|
}
|
9 |
|
|
|
10 |
|
|
export interface Symbol {
|
11 |
|
|
readonly [Symbol.observable]: symbol;
|
12 |
|
|
}
|