Skip Hook V -

// Execute effect normally const cleanup = effect();

export type SkipStrategy = 'once' | 'always' | 'untilChange';

interface AdvancedSkipOptions strategy: SkipStrategy; condition: boolean; onSkip?: () => void; onExecute?: () => void;

// Execute effect normally const cleanup = effect();

export type SkipStrategy = 'once' | 'always' | 'untilChange';

interface AdvancedSkipOptions strategy: SkipStrategy; condition: boolean; onSkip?: () => void; onExecute?: () => void;