woby
Version:
A high-performance framework with fine-grained observable/signal-based reactivity for building rich applications.
8 lines • 309 B
TypeScript
import type { Child, FunctionMaybe, ObservableReadonly } from '../types';
declare const KeepAlive: ({ id, ttl, children }: {
id: FunctionMaybe<string>;
ttl?: FunctionMaybe<number>;
children: Child;
}) => ObservableReadonly<Child>;
export default KeepAlive;
//# sourceMappingURL=keep_alive.d.ts.map