UNPKG

nice-ui

Version:

React design system, components, and utilities

10 lines (9 loc) 282 B
export interface UiLifeCycles { start(): () => void; } export interface SyncStore<T> { subscribe: SyncStoreSubscribe; getSnapshot: () => T; } export type SyncStoreSubscribe = (callback: () => void) => SyncStoreUnsubscribe; export type SyncStoreUnsubscribe = () => void;