fluidstate-preact
Version:
Library for using fine-grained reactivity state management library fluidstate in Preact
11 lines (10 loc) • 381 B
TypeScript
export declare const getDisposePropertyName: () => "_dispose";
export declare const getCallbackName: () => "_callback";
export declare const getPreactEffectClass: () => new (fn: () => void) => {
/**
* These methods don't actually exist, but we pretend they do
* so that the users of this file think we are sane
*/
_dispose(): void;
_callback(): void;
};