feat: Ajout d'un système d'alert
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-05 22:48:06 +02:00
parent 9b039a3fb1
commit 346399d757
217 changed files with 56413 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import isNil from './isNil';
import isNull from './isNull';
import isUndefined from './isUndefined';
import isPureObject from './isPureObject';
import setValueIfNotNil from './setValueIfNotNil';
export { isNil, isNull, isUndefined, isPureObject, setValueIfNotNil, };

View File

@ -0,0 +1,2 @@
declare function isNil(value: unknown): boolean;
export default isNil;

View File

@ -0,0 +1,2 @@
declare function isNull(value: unknown): value is null;
export default isNull;

View File

@ -0,0 +1,2 @@
declare function isPureObject(value: unknown): boolean;
export default isPureObject;

View File

@ -0,0 +1,2 @@
declare function isUndefined(value: unknown): value is undefined;
export default isUndefined;

View File

@ -0,0 +1,3 @@
import { TObject } from '../types';
declare function setValueIfNotNil(targetObject: TObject.UnknownRec, path: string, value: unknown): void;
export default setValueIfNotNil;