mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-12 13:07:33 -07:00
Follow lint
This commit is contained in:
parent
835b4f44ca
commit
6b66428a03
1 changed files with 8 additions and 6 deletions
14
src/@types/deepcopy.d.ts
vendored
14
src/@types/deepcopy.d.ts
vendored
|
@ -1,17 +1,19 @@
|
|||
declare module 'deepcopy';
|
||||
|
||||
declare namespace deepcopy {
|
||||
declare module 'deepcopy' {
|
||||
type DeepcopyCustomizerValueType = 'Object';
|
||||
|
||||
type DeepcopyCustomizer<T> = (
|
||||
value: T,
|
||||
valueType: DeepcopyCustomizerValueType) => T;
|
||||
|
||||
interface DeepcopyOptions<T> {
|
||||
interface IDeepcopyOptions<T> {
|
||||
customizer: DeepcopyCustomizer<T>;
|
||||
}
|
||||
|
||||
export function deepcopy<T>(
|
||||
function deepcopy<T>(
|
||||
value: T,
|
||||
options?: DeepcopyOptions<T> | DeepcopyCustomizer<T>): T;
|
||||
options?: IDeepcopyOptions<T> | DeepcopyCustomizer<T>): T;
|
||||
|
||||
namespace deepcopy {} // Hack
|
||||
|
||||
export = deepcopy;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue