Add comprehensive tests for role middleware and fix package dependencies
Some checks are pending
Docker Test / test (push) Waiting to run
Some checks are pending
Docker Test / test (push) Waiting to run
This commit is contained in:
parent
64aa924270
commit
bfd432d094
1884 changed files with 384668 additions and 84 deletions
13
node_modules/side-channel-list/index.d.ts
generated
vendored
Normal file
13
node_modules/side-channel-list/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
declare namespace getSideChannelList {
|
||||
type Channel<K, V> = {
|
||||
assert: (key: K) => void;
|
||||
has: (key: K) => boolean;
|
||||
get: (key: K) => V | undefined;
|
||||
set: (key: K, value: V) => void;
|
||||
delete: (key: K) => boolean;
|
||||
};
|
||||
}
|
||||
|
||||
declare function getSideChannelList<V, K>(): getSideChannelList.Channel<K, V>;
|
||||
|
||||
export = getSideChannelList;
|
||||
Loading…
Add table
Add a link
Reference in a new issue