/**
 * Debounce options
 */
export interface DebounceOptions {
    /**
     * ttl in milliseconds
     */
    ttl?: number;
    /**
     * Identifier
     */
    id: string;
}
