UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

11 lines (8 loc) 240 B
import { throttle } from 'lodash-decorators'; import { PollingSpeed } from './util.const.ts'; export class SomeFeature { @throttle(1000 as PollingSpeed, { leading: true }) doSomething() { // do something throttled } }