main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
423 bytes
|
Line | |
---|
1 | import { ListActions } from './useList';
|
---|
2 | import { IHookStateInitAction } from './misc/hookState';
|
---|
3 | export interface UpsertListActions<T> extends Omit<ListActions<T>, 'upsert'> {
|
---|
4 | upsert: (newItem: T) => void;
|
---|
5 | }
|
---|
6 | /**
|
---|
7 | * @deprecated Use `useList` hook's upsert action instead
|
---|
8 | */
|
---|
9 | export default function useUpsert<T>(predicate: (a: T, b: T) => boolean, initialList?: IHookStateInitAction<T[]>): [T[], UpsertListActions<T>];
|
---|
Note:
See
TracBrowser
for help on using the repository browser.