|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
367 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | declare namespace getSideChannelMap {
|
|---|
| 2 | type Channel<K, V> = {
|
|---|
| 3 | assert: (key: K) => void;
|
|---|
| 4 | has: (key: K) => boolean;
|
|---|
| 5 | get: (key: K) => V | undefined;
|
|---|
| 6 | set: (key: K, value: V) => void;
|
|---|
| 7 | delete: (key: K) => boolean;
|
|---|
| 8 | };
|
|---|
| 9 | }
|
|---|
| 10 |
|
|---|
| 11 | declare function getSideChannelMap<K, V>(): getSideChannelMap.Channel<K, V>;
|
|---|
| 12 |
|
|---|
| 13 | declare const x: false | typeof getSideChannelMap;
|
|---|
| 14 |
|
|---|
| 15 | export = x;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.