Modulo planilla v1
Some checks failed
build-and-push / build (push) Successful in 33s
build-and-push / deploy (push) Failing after 1s

This commit is contained in:
2025-05-02 17:59:47 -06:00
parent 76138f676d
commit e1dc751397
760 changed files with 82397 additions and 10 deletions

15
api/node_modules/side-channel-map/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
declare namespace getSideChannelMap {
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 getSideChannelMap<K, V>(): getSideChannelMap.Channel<K, V>;
declare const x: false | typeof getSideChannelMap;
export = x;