mirror of https://github.com/sveltejs/svelte
chore: bump packages (#18752)
esrap bump ensures a bugfix, devalue silences vulnerability reportspull/18753/merge
parent
b580455c9c
commit
9d91a40faf
@ -1,2 +1,8 @@
|
||||
/** Anything except a function */
|
||||
export type NotFunction<T> = T extends Function ? never : T;
|
||||
|
||||
declare global {
|
||||
// @ts-ignore devalue has it in its types, but it's not part of the standard lib at the version our runtime is.
|
||||
// We're not actually doing anything with it so we silence the error this ay
|
||||
type Float16Array = any;
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue