addMilliseconds
Ajoute un nombre de millisecondes à un TheDate.
Exemple interactif
Syntaxe
Signature classique
typescript
function addMilliseconds<
GenericInput extends TheDate | SerializedTheDate,
GenericMillisecond extends number
>(
input: GenericInput,
millisecond: GenericMillisecond
): TheDateSignature currifiée
typescript
function addMilliseconds<
GenericInput extends TheDate | SerializedTheDate,
GenericMillisecond extends number
>(
millisecond: GenericMillisecond
): (input: GenericInput) => TheDateParamètres
millisecond: Nombre de millisecondes .input:TheDateouSerializedTheDate.
Valeur de retour
Un TheDate avancé du nombre de millisecondes demandé.
