1
0
Fork 0
decko/tests/index.ts
Daniel Baumann e864a6175d
Adding upstream version 1.2.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-04-22 16:41:43 +02:00

17 lines
No EOL
232 B
TypeScript

import { bind, debounce, memoize } from '..';
class C {
@bind
foo() { }
@debounce
moo() { }
@debounce(1000)
mooWithCustomDelay() { }
@memoize
mem() { }
@memoize(true)
memWithConfig() { }
}