Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
15
node_modules/react-hook-form/dist/utils/createSubject.d.ts
generated
vendored
Normal file
15
node_modules/react-hook-form/dist/utils/createSubject.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import type { Noop } from '../types';
|
||||
export type Observer<T> = {
|
||||
next: (value: T) => void;
|
||||
};
|
||||
export type Subscription = {
|
||||
unsubscribe: Noop;
|
||||
};
|
||||
export type Subject<T> = {
|
||||
readonly observers: Observer<T>[];
|
||||
subscribe: (value: Observer<T>) => Subscription;
|
||||
unsubscribe: Noop;
|
||||
} & Observer<T>;
|
||||
declare const _default: <T>() => Subject<T>;
|
||||
export default _default;
|
||||
//# sourceMappingURL=createSubject.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue