7 lines
85 B
TypeScript
7 lines
85 B
TypeScript
declare global {
|
|
interface JSON {
|
|
safeParse: typeof JSON.parse
|
|
}
|
|
}
|
|
export {}
|