Done !
Server IP : 162.0.217.223 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/www/wp-content/plugins/supportcandy/asset/libs/chartjs/types/ |
Upload File : |
// DeepPartial implementation taken from the utility-types NPM package, which is // Copyright (c) 2016 Piotr Witek <piotrek.witek@gmail.com> (http://piotrwitek.github.io) // and used under the terms of the MIT license export type DeepPartial<T> = T extends Function ? T : T extends Array<infer U> ? _DeepPartialArray<U> : T extends object ? _DeepPartialObject<T> : T | undefined; type _DeepPartialArray<T> = Array<DeepPartial<T>> type _DeepPartialObject<T> = { [P in keyof T]?: DeepPartial<T[P]> }; export type DistributiveArray<T> = [T] extends [unknown] ? Array<T> : never // From https://stackoverflow.com/a/50375286 export type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends ((k: infer I) => void) ? I : never;