UNPKG

mattermost-redux

Version:

Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client

9 lines (8 loc) 237 B
export default class DelayedAction<F extends (...args: any) => any> { action: F; timer: NodeJS.Timeout | null; constructor(action: F); fire: () => void; fireAfter: (timeout: number) => void; cancel: () => void; }